24 lines
365 B
Vue
24 lines
365 B
Vue
<script setup lang="ts">
|
|
// types
|
|
|
|
type Props = {
|
|
title: string;
|
|
};
|
|
|
|
// props
|
|
|
|
defineProps<Props>();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex items-center w-full lg:py-4 lg:border-b px-5 border-slate-200"
|
|
>
|
|
<p class="font-semibold lg:text-lg text-black">
|
|
{{ title }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|