UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

22 lines (21 loc) 508 B
import * as React from 'react'; import { Spinner } from './Spinner'; export interface ISpinnerProps extends React.Props<Spinner> { /** * The type of the button to render. { normal, large } * @default SpinnerType.normal */ type?: SpinnerType; /** * The label to show next to the spinner. */ label?: string; /** * Additional CSS class(es) to apply to the Spinner. */ className?: string; } export declare enum SpinnerType { normal = 0, large = 1, }