UNPKG

kruti-icon-library

Version:

React icon library with 24px icons and dynamic sizing

10 lines (9 loc) 267 B
export interface IconProps extends React.SVGProps<SVGSVGElement> { size?: 16 | 20 | 24 | number | string; color?: string; ariaHidden?: boolean; title?: string; } export interface IconComponent extends React.FC<IconProps> { displayName?: string; }