Init commit

This commit is contained in:
Blossomi Shymae
2024-05-01 20:38:02 -05:00
commit 75bc1827e4
29 changed files with 11845 additions and 0 deletions

18
components/Badge.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<span class="badge text-bg-dark border text-dark-emphasis fw-normal d-flex align-items-center gap-2 bg-transparent bg-blur-4 border-light border-opacity-25">
<MaterialIcon :size="24" :name="name" />
<slot></slot>
</span>
</template>
<script setup lang="ts">
import MaterialIcon from './MaterialIcon.vue';
defineProps<{
name: string
}>();
</script>
<style lang="scss" scoped>
</style>