/*! Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. */
import * as React from 'react';
import Screener from 'screener-storybook/src/screener';
import { storiesOf } from '@storybook/react';
import { FabricDecorator } from '../utilities';
import { Spinner, SpinnerSize } from 'office-ui-fabric-react';
storiesOf('Spinner', module)
.addDecorator(FabricDecorator)
.addDecorator(story => (
{story()}
))
.addStory('Extra small', () => )
.addStory('Small', () => )
.addStory('Medium', () => )
.addStory('Large', () => )
.addStory('Label', () => (
))
.addStory('Label at top', () => (
))
.addStory('Label on the right', () => (
))
.addStory('Label on the left', () => (
));