import type { IconType } from '@autoguru/icons'; import { type FunctionComponent, type ReactElement, type SVGAttributes } from 'react'; import type { ResponsiveProp } from '../../utils/responsiveProps.css'; import { type UseBoxProps } from '../Box/useBox/useBox'; import * as styles from './Icon.css'; export type IconEl = IconType | ReactElement, 'svg'> | null; export interface IconProps { display?: Extract; className?: string; size?: ResponsiveProp; icon?: IconEl; } export declare const Icon: FunctionComponent; //# sourceMappingURL=Icon.d.ts.map