import React from 'react'; import { Modal } from '../../composites/Modal'; import type { IActionsheetProps } from './types'; import { useThemeProps } from '../../../hooks'; const Actionsheet = ({ children, ...props }: IActionsheetProps, ref: any) => { const { isOpen, disableOverlay, onClose, ...newProps } = useThemeProps( 'Actionsheet', props ); return ( {children} ); }; export default React.memo(React.forwardRef(Actionsheet));