/*! Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. */ import * as React from 'react'; import Screener, { Steps } from 'screener-storybook/src/screener'; import { storiesOf } from '@storybook/react'; import { FabricDecorator } from '../utilities'; import { Separator, mergeStyles } from 'office-ui-fabric-react'; const verticalStyles = mergeStyles({ height: '400px', }); const horizontalStyles = mergeStyles({ width: '400px', }); storiesOf('Separator', module) .addDecorator(FabricDecorator) .addDecorator(story => ( {story()} )) .addStory( 'Root', () => (
Today
), { rtl: true }, ) .addStory( 'Horizontal Start Aligned', () => (
Today
), { rtl: true }, ) .addStory( 'Horizontal End Aligned', () => (
Today
), { rtl: true }, ) .addStory( 'Vertical Center Aligned', () => (
Today
), { rtl: true }, ) .addStory( 'Vertical Start Aligned', () => (
Today
), { rtl: true }, ) .addStory( 'Vertical End Aligned', () => (
Today
), { rtl: true }, );