28 lines
504 B
TypeScript
28 lines
504 B
TypeScript
'use client'
|
|
|
|
// MUI Imports
|
|
import Button from '@mui/material/Button'
|
|
import Typography from '@mui/material/Typography'
|
|
|
|
interface Props {
|
|
title: string
|
|
}
|
|
|
|
const ReportTitle = ({ 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>
|
|
)
|
|
}
|
|
|
|
interface Props {
|
|
title: string
|
|
}
|
|
|
|
export default ReportTitle
|