/*! 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 { ChoiceGroup } from 'office-ui-fabric-react';
import { TestImages } from '@uifabric/example-data';
const options = [
{
key: 'A',
text: 'Selected',
},
{
key: 'B',
text: 'Unselected',
},
{
key: 'C',
text: 'Disabled',
disabled: true,
},
];
storiesOf('ChoiceGroup', module)
.addDecorator(FabricDecorator)
.addDecorator(story => (
{story()}
))
.addStory('Root', () =>
// prettier-ignore
,
)
.addStory('Required', () =>
// prettier-ignore
,
)
.addStory(
'With icons',
() => (
),
{ rtl: true },
)
.addStory('With default size images', () => (
))
.addStory('With large size images', () => (
));