Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 149x 149x | <template>
<div class="pane-text px-2 pt-5 pb-3 text-overline">{{ props.title }}</div>
</template>
<script lang="ts" setup>
interface Props {
title: string;
}
const props = withDefaults(defineProps<Props>(), {
title: '',
});
</script>
<style scoped lang="scss">
.pane-text {
color: #5e5e6b;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 16px;
letter-spacing: 2.4px;
text-transform: uppercase;
}
</style>
|