import Typography from "@mui/material/Typography"; import type { SxProps } from "@mui/system"; interface Props { children: React.ReactNode; sx?: SxProps; } export const ModalHeader = ({ children, sx }: Props) => ( {children} );