UNPKG

@cmk/fe_utils

Version:
15 lines (13 loc) 393 B
import { BoxProps, SxProps } from '@mui/material'; import { ReactNode } from 'react'; export type IconProps = { sx: SxProps & BoxProps; color?: string; path: string; rootInjection: ReactNode; size?: string; horizontal?: boolean; vertical?: boolean; rotate?: string; }; export declare const CIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;