Files
hossein-por-shop/frontend/components/profile/ProfilePageTitle.vue
T
2025-02-08 23:48:19 +03:30

31 lines
725 B
Vue

<script setup lang="ts">
// types
type Props = {
title: string;
icon: string;
};
// props
defineProps<Props>();
</script>
<template>
<div
class="flex items-center justify-between w-full gap-3 px-5 py-4 rounded-xl bg-slate-50 border border-slate-200"
>
<div class="flex items-center w-full gap-3 lg:w-1/2">
<button class="flex-center lg:hidden">
<Icon name="bi:chevron-right" size="24" class="**:fill-black" />
</button>
<p class="font-semibold lg:text-lg text-black">
{{ title }}
</p>
</div>
<Icon :name="icon" size="24" class="**:fill-black" />
</div>
</template>
<style scoped></style>