import * as React from 'react'; import { Sizes } from '../../styles'; import { StyledModal, StyledModalBackground } from './styled-modal'; interface Props { children: React.ReactNode; open: boolean; size: Sizes; onClose?: () => void; alignCenter?: boolean; showBorder?: boolean; } const Modal = (props: Props) => ( {props.children} ); Modal.defaultProps = { size: 'md', } export default Modal;