chatwoot-develop/app/javascript/dashboard/components-next/captain/pageComponents/settings/SettingsHeader.vue
2026-01-12 19:04:15 -03:00

21 lines
435 B
Vue
Executable File

<script setup>
defineProps({
heading: {
type: String,
required: true,
},
description: {
type: String,
default: '',
},
});
</script>
<template>
<!-- eslint-disable vue/no-bare-strings-in-template -->
<header class="flex flex-col items-start gap-2">
<h2 class="text-n-slate-12 text-base font-medium">{{ heading }}</h2>
<p class="text-n-slate-11 text-sm">{{ description }}</p>
</header>
</template>