UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
11 lines (10 loc) 390 B
import MuiModal from '@mui/material/Modal'; import type { ComponentProps } from 'react'; export type MuiModalChildren = ComponentProps<typeof MuiModal>['children']; interface Props { open: boolean; children: MuiModalChildren; handleClose?: () => void; } export declare const Modal: ({ open, children, handleClose }: Props) => import("react/jsx-runtime").JSX.Element; export {};