UNPKG

@cmk/fe_utils

Version:
10 lines (8 loc) 311 B
import { ReactNode } from 'react'; import { BackdropProps } from '@mui/material'; export type CBackdropProps = BackdropProps & { open: boolean; label?: ReactNode; disablePortal?: boolean; }; export declare const Backdrop: (props: CBackdropProps) => false | import("react/jsx-runtime").JSX.Element;