UNPKG

368 BTypeScriptView Raw
1import * as React from 'react';
2import type { IIconProps } from './Icon.types';
3/**
4 * Legacy Icon component which can be targeted by customization. It's recommended to use `FontIcon`
5 * or `ImageIcon` instead, especially in scenarios where rendering performance is important.
6 * {@docCategory Icon}
7 */
8export declare const Icon: React.FunctionComponent<IIconProps>;