import React from 'react'; export interface IconProps { fill?: string; width?: number; height?: number; viewBox?: string; } export interface IconWrapperProps extends IconProps { name: IconName; } export type IconName = 'dev-family-logo' | 'dev-family-logo-inversion' | 'dev-family-logo-inversion-bw' | 'logo-auth' | 'logo-auth-inversion' | 'spinner'; export type IconComponentType = ((props: IconProps) => React.JSX.Element) | null;