mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
25 lines
717 B
TypeScript
25 lines
717 B
TypeScript
import Button from '@/components/Button';
|
|
import { Icon } from '@iconify/react';
|
|
|
|
interface FormHeaderProps {
|
|
type: 'add' | 'edit' | 'detail';
|
|
title: string;
|
|
backUrl: string;
|
|
}
|
|
|
|
export const FormHeader = ({ type, title, backUrl }: FormHeaderProps) => {
|
|
return (
|
|
<header className='flex flex-col gap-4'>
|
|
<Button href={backUrl} variant='link' className='w-fit p-0 text-primary'>
|
|
<Icon icon='uil:arrow-left' width={24} height={24} />
|
|
Kembali
|
|
</Button>
|
|
<h1 className='text-2xl font-bold text-center'>
|
|
{type === 'add' && `Tambah ${title}`}
|
|
{type === 'edit' && `Edit ${title}`}
|
|
{type === 'detail' && `Detail ${title}`}
|
|
</h1>
|
|
</header>
|
|
);
|
|
};
|