aboutsummaryrefslogtreecommitdiff
path: root/src/components/Basic/Chip.svelte
blob: 19fa36cf6f6c10080288652f0175804e95976e56 (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: var(--gradient-1, green);
        color: white;
    }
</style>

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