9 lines
368 B
TypeScript
9 lines
368 B
TypeScript
import * as React from 'react';
|
|
import type { IImageIconProps } from './Icon.types';
|
|
/**
|
|
* Fast icon component which only supports images (not font glyphs) and can't be targeted by customizations.
|
|
* To style the icon, use `className` or reference `ms-Icon` in CSS.
|
|
* {@docCategory Icon}
|
|
*/
|
|
export declare const ImageIcon: React.FunctionComponent<IImageIconProps>;
|