2021-11-09 15:40:47 +00:00

16 lines
285 B
Svelte

<div class="badge">
<slot></slot>
</div>
<style>
.badge {
display: flex;
align-items: center;
background-color: #3472f7;
border-radius: 2px;
font-size: 14px;
padding: 0 4px;
margin-left: 4px;
}
</style>