@cmk/fe_utils
Version:
frontend utility library
15 lines (13 loc) • 393 B
TypeScript
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;