Done
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<script setup lang="ts">
|
||||
withDefaults(
|
||||
defineProps<{
|
||||
text: string;
|
||||
color?: string;
|
||||
}>(),
|
||||
{
|
||||
color: 'primary',
|
||||
},
|
||||
);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<p class="text-overline mb-1" :class="`text-${color}`">
|
||||
{{ text }}
|
||||
</p>
|
||||
</template>
|
||||
Reference in New Issue
Block a user