UNPKG

@cmk/fe_utils

Version:
9 lines (7 loc) 364 B
import { BoxProps } from '@mui/material'; import { ReactNode } from 'react'; import { CommonComponentPropertys } from '../../componentProperty'; export type ImageWrapperProps = CommonComponentPropertys & BoxProps<'img'> & { rootInjection: ReactNode; }; export declare const ImageWrapper: (props: ImageWrapperProps) => import("react/jsx-runtime").JSX.Element;