UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

16 lines (15 loc) 577 B
import { BaseComponent } from '../../Utilities'; import { IButtonProps } from './Button.types'; /** * This class is deprecated. Use the individual *Button components instead. * @deprecated Use the individual *Button components instead. * {@docCategory Button} */ export declare class Button extends BaseComponent<IButtonProps, {}> { /** * Set this BaseComponent._skipComponentRefResolution to true, bypassing resolution of componentRef. */ protected _skipComponentRefResolution: boolean; constructor(props: IButtonProps); render(): JSX.Element; }