@cmk/fe_utils
Version:
frontend utility library
16 lines (14 loc) • 535 B
TypeScript
import { BoxProps, SxProps } from '@mui/material';
import { CommonComponentPropertys } from '../../componentProperty';
import { ReactNode } from 'react';
export type IconComponentWrapperProps = {
sx: SxProps & BoxProps;
color?: string;
path: string;
rootInjection: ReactNode;
size?: string;
horizontal?: boolean;
vertical?: boolean;
rotate?: string;
} & CommonComponentPropertys;
export declare const IconComponentWrapper: (props: IconComponentWrapperProps) => import("react/jsx-runtime").JSX.Element;