import { IconProps } from './icon.types'; /** * This is a wrapper component to wrap any SVG icon and provide a unified interface * to manipulate its props * * ### Usage * #### Library Icons * ``` * import { FireIcon } from '@bloomreach/react-banana-ui' * * * ``` * * #### Custom Icons * ``` * import Icon from '@bloomreach/react-banana-ui' * import CustomSvgIcon from 'path/to/icon.svg?react' * * * * * ``` */ declare const Icon: import('react').ForwardRefExoticComponent>; export default Icon;