import type { ForwardRefExoticComponent, RefAttributes, SVGProps } from 'react'; export interface IconProps extends Omit, 'ref'> { /** Sets both width and height. Defaults to "1em" so icons scale with font-size. */ size?: number | string; /** * Accessible label, rendered as an SVG `` with `role="img"`. * Without it (or `aria-label`/`aria-labelledby`) the icon is decorative * and gets `aria-hidden="true"`. */ title?: string; } export type Icon = ForwardRefExoticComponent< IconProps & RefAttributes<SVGSVGElement> >; declare const base: (d: string) => Icon; export default base;