Files
hossein-por-shop/frontend/components/profile/ProfileSection.vue
T
2025-02-11 23:27:02 +03:30

32 lines
686 B
Vue

<script setup lang="ts">
// types
type Props = {
title: string;
};
// props
defineProps<Props>();
</script>
<template>
<div class="flex flex-col w-full">
<div class="flex flex-col items-start">
<div
class="w-full flex items-center justify-between h-[3rem] pb-5 px-5"
>
<span class="typo-sub-h-lg">{{ title }}</span>
<slot name="button" />
</div>
</div>
<div class="w-full flex flex-col border border-slate-200 rounded-xl">
<div class="w-full p-5">
<slot />
</div>
</div>
</div>
</template>
<style scoped></style>