UNPKG

326 BTypeScriptView Raw
1import * as React from 'react';
2import type { IIconProps } from './Icon.types';
3export interface IIconState {
4 imageLoadError: boolean;
5}
6export declare class IconBase extends React.Component<IIconProps, IIconState> {
7 constructor(props: IIconProps);
8 render(): JSX.Element;
9 private _onImageLoadingStateChange;
10}