feat(Icon): use @antfu/nuxt-icon-poc (#76)

Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
This commit is contained in:
Benjamin Canac
2024-04-24 14:10:54 +02:00
committed by GitHub
parent a44a24962b
commit 142affb9a7
4 changed files with 1175 additions and 1301 deletions

View File

@@ -1,13 +0,0 @@
<script lang="ts">
export interface IconProps {
name: string
}
</script>
<script setup lang="ts">
defineProps<IconProps>()
</script>
<template>
<Icon :name="name" />
</template>