import React from 'react'; import CloseIcon from '../../icons/CloseIcon'; import Button from '../Button'; import Typography from '../Typography'; import { ModalProps } from './interfaces'; import { Backdrop, CloseButton, ContentHeader, ContentWrapper, Wrapper, } from './styles'; import { config as theme } from '../../theme'; const Modal: React.FC = ({ maxWidth, title, subtitle, onClose, hideHeader = false, children, }) => { return (