chore: use monorepo organization

This commit is contained in:
Rafael Taranto 2025-05-12 10:52:54 +01:00
parent deaf7d6ecc
commit a687827f7e
1099 changed files with 8184 additions and 11535 deletions

View file

@ -0,0 +1,39 @@
import Dialog from '@mui/material/Dialog'
import DialogContent from '@mui/material/DialogContent'
import SvgIcon from '@mui/material/SvgIcon'
import IconButton from '@mui/material/IconButton'
import React, { memo } from 'react'
import { H1 } from 'src/components/typography'
import CloseIcon from 'src/styling/icons/action/close/zodiac.svg?react'
export const InformativeDialog = memo(
({ title = '', open, onDissmised, disabled = false, data, ...props }) => {
const innerOnClose = () => {
onDissmised()
}
return (
<Dialog
PaperProps={{
style: {
borderRadius: 8
}
}}
fullWidth
open={open}
aria-labelledby="form-dialog-title"
{...props}>
<div className="flex justify-end pt-4 pr-3 pb-0 pl-4">
<IconButton aria-label="close" onClick={innerOnClose}>
<SvgIcon fontSize="small">
<CloseIcon />
</SvgIcon>
<CloseIcon />
</IconButton>
</div>
<H1 className="mt-0 mr-4 mb-2 ml-5">{title}</H1>
<DialogContent>{data}</DialogContent>
</Dialog>
)
}
)