UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 503 B
module.exports = "import * as React from 'react';\nimport { Spinner } from './Spinner';\n\nexport interface ISpinnerProps extends React.Props<Spinner> {\n /**\n * The type of the button to render. { normal, large }\n * @default SpinnerType.normal\n */\n type?: SpinnerType;\n\n /**\n * The label to show next to the spinner.\n */\n label?: string;\n\n /**\n * Additional CSS class(es) to apply to the Spinner.\n */\n className?: string;\n}\n\nexport enum SpinnerType {\n normal,\n large\n}\n";