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>;
