UNPKG

@cmk/fe_utils

Version:
16 lines (14 loc) 535 B
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;