mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 19:49:16 +01:00
refactor: ♻️ Begin refactoring code to use new custom UI library
This commit is contained in:
parent
2e1cc99de4
commit
13faf840dd
13 changed files with 196 additions and 78 deletions
11
packages/ui/components/icons/icon.vue
Normal file
11
packages/ui/components/icons/icon.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<iconify-icon data-slot="icon" :icon="icon" width="none" />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import "iconify-icon";
|
||||
|
||||
const props = defineProps<{
|
||||
icon: string;
|
||||
}>();
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue