import * as React from 'react'; import { LocalOverlayShowProps, OverlayShowProps, overlayShowDefaultProps, overlayShowPropTypes } from '../Overlay/OverlayShow'; import { ModalShow as _ModalShow } from './styled'; export type LocalModalShowProps = LocalOverlayShowProps & {}; export type ModalShowProps = OverlayShowProps; const ModalShow: React.FunctionComponent = ({ children, ...props }) => ( <_ModalShow {...props}>{children} ); ModalShow.propTypes = { ...overlayShowPropTypes }; ModalShow.defaultProps = { ...overlayShowDefaultProps }; // @ts-ignore const C: React.FunctionComponent = ModalShow; export default C;