refactor: ♻️ Begin refactoring code to use new custom UI library

This commit is contained in:
Jesse Wierzbinski 2024-06-27 03:03:03 -10:00
parent 2e1cc99de4
commit 13faf840dd
No known key found for this signature in database
13 changed files with 196 additions and 78 deletions

View 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>