office-ui-fabric-react
Version: 
Reusable React components for building experiences for Office 365.
11 lines (10 loc) • 375 B
TypeScript
/// <reference types="react" />
import { BaseComponent } from '../../../Utilities';
import { IButtonProps } from '../Button.types';
export declare class IconButton extends BaseComponent<IButtonProps, {}> {
    /**
     * Tell BaseComponent to bypass resolution of componentRef.
     */
    protected _shouldUpdateComponentRef: boolean;
    render(): JSX.Element;
}