UNPKG

@wulperstudio/cms

Version:
11 lines (10 loc) 322 B
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 {};