UNPKG

mfg-ui-components

Version:

React UI library with reusable components

16 lines (15 loc) 536 B
import "./Modal.scss"; export type width = "small" | "medium" | "large"; export type size = "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; export interface Props { children: any; buttonText?: any; width?: width; headerText?: any; customClass?: string; footerChildren?: any; headingType?: size; headingId?: string; } declare const Modal: ({ children, buttonText, width, headerText, customClass, footerChildren, headingType, headingId, }: Props) => import("react/jsx-runtime").JSX.Element; export default Modal;