UNPKG

363 BTypeScriptView Raw
1import * as React from 'react';
2import { IImageIconProps } from './Icon.types';
3/**
4 * Fast icon component which only supports images (not font glyphs) and can't be targeted by customizations.
5 * To style the icon, use `className` or reference `ms-Icon` in CSS.
6 * {@docCategory Icon}
7 */
8export declare const ImageIcon: React.FunctionComponent<IImageIconProps>;