@cmk/fe_utils
Version:
frontend utility library
10 lines (8 loc) • 311 B
TypeScript
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;