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