@clarabridge/unified-react-components
Version:
Collection of Engage reusable components
11 lines (10 loc) • 354 B
TypeScript
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;