UNPKG

@amsterdam/bmi-component-library

Version:

A React component library based on ASC and Material-UI aimed at repurposing and sharing components across BMI projects

12 lines 400 B
import type { FC, ReactNode } from 'react'; export type ModalActionsProps = { children?: ReactNode | ReactNode[] | any; hideDivider?: boolean; }; export interface IModalActions extends FC<ModalActionsProps> { Left: FC<ModalActionsProps>; Right: FC<ModalActionsProps>; } declare const ModalActions: IModalActions; export default ModalActions; //# sourceMappingURL=ModalActions.d.ts.map