mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-15 04:29:37 +01:00
14 lines
184 B
Vue
14 lines
184 B
Vue
<script lang="ts">
|
|
export interface IconProps {
|
|
name: string
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<IconProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<Icon :name="name" />
|
|
</template>
|