import { IconType } from '../enums'; export interface Icon { type: IconType | ((data: any) => IconType); name: string | ((data: any) => string); }