@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
11 lines (10 loc) • 322 B
TypeScript
import { IconProps } from '@iconify/react';
import { BoxProps } from '@mui/material';
import { Omit } from '../../types';
type OmittedProps = 'color';
export interface BoxIconModel extends Omit<BoxProps, OmittedProps> {
color?: string;
icon: string;
iconProps?: Omit<IconProps, 'color' | 'icon'>;
}
export {};