20 lines
330 B
Vue
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>
|