@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
7 lines (6 loc) • 304 B
TypeScript
import { BoxProps, ModalProps } from '@mui/material';
export interface DrawerModalPropsModel extends ModalProps {
background?: string;
boxProps?: BoxProps;
}
export declare const DrawerModal: ({ background, boxProps, ...props }: DrawerModalPropsModel) => import("react/jsx-runtime").JSX.Element;