first commit

This commit is contained in:
2025-04-22 10:56:56 +07:00
commit af123c091b
147 changed files with 778063 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<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>