mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
17 lines
215 B
Vue
17 lines
215 B
Vue
<template>
|
|
<span :class="name" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
name: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default { name: 'UIcon' }
|
|
</script>
|