import { IconProps } from './types/Icon.props.ts'; import { FC } from 'react'; /** * SVG icon wrapper. Decorative by default (`aria-hidden`). Pass * `aria-label` to emit `role="img"` for informative icons. An icon inside * a named control should remain decorative — the control owns the name. */ declare const Icon: FC; export default Icon;