@fluentui/react
Version:
Reusable React components for building web experiences.
9 lines (8 loc) • 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>;