UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

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