UNPKG

react-hyper-modal

Version:

Fully customizable and accessible modal react component

10 lines (9 loc) 327 B
import * as React from 'react'; import { IARIAProps } from '../../types'; export interface DefaultModalContentProps { ariaEnabled?: boolean; ariaProps?: IARIAProps; handleClose: () => void; } export declare const DefaultModalContent: React.FC<DefaultModalContentProps>; export default DefaultModalContent;