import { SvgName } from "./Names"; import { SvgSize } from "./SvgSizes"; export interface SvgIconProps { name?: SvgName; // TODO: How to allow strings? while using SvgAlias as the union type alias?: string; size?: SvgSize; className?: string; }