Report Cash Flow

This commit is contained in:
efrilm
2025-09-11 17:57:00 +07:00
parent b3a41fe0e0
commit a1d23cad9e
6 changed files with 339 additions and 4 deletions
+27
View File
@@ -0,0 +1,27 @@
'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