initial commit
This commit is contained in:
commit
aa56b724f2
18 changed files with 2718 additions and 0 deletions
15
src/components/SidebarIcon.vue
Normal file
15
src/components/SidebarIcon.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<script setup>
|
||||
const props = defineProps({
|
||||
icon: String,
|
||||
text: String
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<i class="sidebar-icon group">
|
||||
<font-awesome-icon :icon="['fas', icon]" />
|
||||
<span class="sidebar-tooltip group-hover:scale-100">
|
||||
{{ text }}
|
||||
</span>
|
||||
</i>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue