mui-simple
Version:
Override mui-v7 components to simplify usage
13 lines • 451 B
TypeScript
import type { FC, PropsWithChildren, ReactNode } from 'react';
import type { SxProps } from '@mui/material';
interface MuiIconNameProps {
name: string | ReactNode;
color: string;
width: string | number;
height: string | number;
sx?: SxProps;
}
type MuiIconNamePropsType = PropsWithChildren<MuiIconNameProps>;
declare const MuiIconName: FC<MuiIconNamePropsType>;
export default MuiIconName;
//# sourceMappingURL=MuiIconName.d.ts.map