UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 737 B
module.exports = "import * as React from 'react';\nimport {\n Label,\n Spinner,\n SpinnerType\n} from '../../../../index';\nimport './Spinner.Basic.Example.scss';\n\nexport class SpinnerBasicExample extends React.Component<any, any> {\n public render() {\n return (\n <div className='ms-BasicSpinnersExample'>\n <Label>Normal Spinner</Label>\n <Spinner />\n\n <Label>Large Spinner</Label>\n <Spinner type={ SpinnerType.large }/>\n\n <Label>Spinner With Label</Label>\n <Spinner label='I am definitely loading...' />\n\n <Label>Large Spinner With Label</Label>\n <Spinner type={ SpinnerType.large } label='Seriously, still loading...'/>\n </div>\n );\n }\n}\n";