import { SVGProps, default as React } from 'react'; type IconWeight = 'thin' | 'light' | 'regular' | 'bold'; export interface IconProps extends SVGProps { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Symbol id from element to render. Take a look at `/static/icons.svg`. * * Example: */ name: string; /** * SVG weight. * * @default 'regular' */ weight?: IconWeight; /** * SVG width. * * @default '24' */ width?: number; /** * SVG height. * * @default '24' */ height?: number; } declare const Icon: React.ForwardRefExoticComponent & React.RefAttributes>; export default Icon; //# sourceMappingURL=Icon.d.ts.map