/** @alpha */ export interface IconProps extends React.SVGAttributes { /** The icon ID from the icons.svg sprite */ icon: string; /** Whether to flip the icon horizontally */ flipX?: boolean; /** Whether to flip the icon vertically */ flipY?: boolean; /** The path to the icons.svg file */ iconPath?: string; } /** * The `Icon` component displays SVG icons from an icon sprite sheet using SVG's * `` element. * * @example Basic icon * * ```tsx * ; * ``` * * @example Flipped icon * * ```tsx * ; * ``` * * @example All icons provided by default * * ```tsx * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ; * ``` * * @alpha */ export declare const Icon: React.FC; //# sourceMappingURL=Icon.d.ts.map