@cmk/fe_utils
Version:
frontend utility library
9 lines (7 loc) • 361 B
TypeScript
import { ReactNode } from 'react';
import { CommonComponentPropertys } from '../../componentProperty';
import { PaperProps } from '@mui/material';
export type PaperWrapperProps = PaperProps & {
rootInjection: ReactNode;
} & CommonComponentPropertys;
export declare const PaperWrapper: (props: PaperWrapperProps) => import("react/jsx-runtime").JSX.Element;