20 lines
407 B
TypeScript
Raw Normal View History

2025-09-10 03:23:54 +07:00
import { Typography } from '@mui/material'
interface Props {
title: string
}
const PurchaseDetailHeader = ({ title }: Props) => {
return (
<div className='flex flex-wrap sm:items-center justify-between max-sm:flex-col gap-6'>
<div>
<Typography variant='h4' className='mbe-1'>
{title}
</Typography>
</div>
</div>
)
}
export default PurchaseDetailHeader