UNPKG

@teamsnap/teamsnap-ui

Version:

a CSS component library for TeamSnap

15 lines (14 loc) 363 B
import * as React from 'react'; export interface Props { heading: React.ReactNode; show: boolean; children: React.ReactNode; showClose?: boolean; allowOverlayClose?: boolean; style?: React.CSSProperties; testId?: string; closeFn?: () => void; fullscreen?: boolean; } declare const Modal: React.FC<Props>; export default Modal;