Files
dredgenews/resources/js/components/Eyebrow.vue
T
dredgy 439139a057
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Done
2026-07-04 23:09:00 +10:00

18 lines
277 B
Vue

<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>