aboutsummaryrefslogtreecommitdiff
path: root/src/components/Basic/Chip.svelte
blob: b8697aee4be26ece4b29aa7fe610302b44d0ccca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<style>
    .chip {
        padding: 3px 5px;
        box-sizing: border-box;
        border-radius: 20px;
        background: linear-gradient(90deg, #84fab0, #8fd3f4 51%, #84fab0) 100% / 200%;
        color: white;
    }
</style>

<div class="chip">
    <slot></slot>
</div>