Files
web/app/components/Caption.vue
2026-05-14 15:37:58 +07:00

16 lines
402 B
Vue

<template>
<span :class="`icon-text is-flex-wrap-nowrap font-semibold fs-${props.size || 15} ${props.type || ''}`">
<span style="text-wrap: nowrap">{{ title }}</span>
<span class="icon">
<Icon name="material-symbols:arrow-forward-ios-rounded" />
</span>
</span>
</template>
<script setup>
const props = defineProps({
type: String,
size: Number,
title: String,
});
</script>