EDMS/components/layouts/FormHeader.vue
2025-05-30 04:23:17 +00:00

21 lines
556 B
Vue

<script setup></script>
<template>
<div>
<div
class="w-full h-14 z-20 bg-white dark:bg-slate-800 fixed top-0 right-0 px-5 py-3 duration-300 shadow-md shadow-slate-200 dark:shadow-slate-900"
>
<div class="flex justify-between">
<div>
<h1 class="text-2xl font-semibold text-gray-800 dark:text-white">
<Icon
name="material-symbols:chevron-left-rounded"
class="inline-block w-6 h-6 mr-2"
/>
</h1>
</div>
</div>
</div>
</div>
</template>