chore: transform to module

This commit is contained in:
Benjamin Canac
2024-03-05 19:19:37 +01:00
parent 3c716219cf
commit f76ec5a376
14 changed files with 930 additions and 1024 deletions

View File

@@ -0,0 +1,12 @@
<template>
<Icon :name="name" />
</template>
<script setup lang="ts">
defineProps({
name: {
type: String,
required: true
}
})
</script>