UNPKG

@clarabridge/unified-react-components

Version:
11 lines (10 loc) 354 B
import './modals.pcss'; import { PropsWithChildren, ReactElement } from 'react'; export type ModalProps = PropsWithChildren<{ size?: 'large' | 'medium' | 'small'; 'aria-labelledby'?: string; 'aria-described-by'?: string; isOpen: boolean; container?: Element; }>; export default function Modal(props: ModalProps): ReactElement | null;