Files
vitify-nuxt/components/Div/IconText.vue
2025-04-22 10:56:56 +07:00

20 lines
330 B
Vue

<script setup>
defineProps({
text: {
type: String,
required: true,
},
icon: {
type: String,
default: 'mdi-information',
},
})
</script>
<template>
<v-row align="center" no-gutters>
<v-icon small class="mr-2">{{ icon }}</v-icon>
<span class="text-body-2">{{ text }}</span>
</v-row>
</template>