UNPKG

plotly-icons

Version:
11 lines (9 loc) 273 B
import { ComponentType } from 'react'; export interface MdiReactIconProps { color?: string; size?: number | string; className?: string; // should not have any children children?: never; } export type MdiReactIconComponentType = ComponentType<MdiReactIconProps>;