🚧 Switch to monorepo with Turbo
This commit is contained in:
12
apps/website/src/components/atoms/Badge.svelte
Normal file
12
apps/website/src/components/atoms/Badge.svelte
Normal file
@@ -0,0 +1,12 @@
|
||||
<style lang="scss">
|
||||
@import "../../style/atoms/badge";
|
||||
</style>
|
||||
|
||||
<script lang="ts">
|
||||
export let text: string
|
||||
export let size: string = 'small'
|
||||
</script>
|
||||
|
||||
<div class="badge badge--{size}">
|
||||
<span>{text}</span>
|
||||
</div>
|
||||
Reference in New Issue
Block a user