UNPKG

@cmk/fe_utils

Version:
11 lines (9 loc) 422 B
import { BoxProps } from '@mui/material'; import { CSSProperties, ReactNode } from 'react'; import { CommonComponentPropertys } from '../../componentProperty'; export type BoxWrapperProps = CommonComponentPropertys & { children?: ReactNode; rootInjection: ReactNode; sx?: BoxProps['sx'] & CSSProperties; }; export declare const BoxWrapper: (props: BoxWrapperProps) => import("react/jsx-runtime").JSX.Element;