20 lines
444 B
Vue
20 lines
444 B
Vue
<script setup>
|
|
defineProps({
|
|
subtitle: String,
|
|
title: String
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="text-center p-6 bg-primary dark:bg-primary-dark border-b">
|
|
<p class="pt-2 text-lg font-bold text-gray-50">
|
|
{{ title }}
|
|
</p>
|
|
<p
|
|
v-if="subtitle"
|
|
class="text-sm text-primary-on dark:text-primary-dark-on"
|
|
>
|
|
{{ subtitle }}
|
|
</p>
|
|
</div>
|
|
</template> |