feat: Added badge component

This commit is contained in:
Ilya Sosidka
2022-09-03 10:23:50 +03:00
parent fd177ef3e6
commit ac84ca2353
10 changed files with 264 additions and 30 deletions

View File

@@ -0,0 +1,9 @@
<template>
<div class="vp-raw flex items-end">
<Badge href="#">Link</Badge>
<Badge size="sm" href="#">Link</Badge>
</div>
</template>
<script setup>
import { Badge } from '../../../../src/index'
</script>