/*! 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 { ActivityItem, Icon } from 'office-ui-fabric-react';
storiesOf('ActivityItem', module)
.addDecorator(FabricDecorator)
.addDecorator(story =>
// prettier-ignore
{story()}
,
)
.addStory(
'Root',
() => (
}
activityDescription={description text}
comments={comment text}
timeStamp="timeStamp text"
/>
),
{ rtl: true },
)
.addStory(
'Personas',
() => (
description text}
comments={comment text}
timeStamp="timeStamp text"
/>
),
{ rtl: true },
)
.addStory('Compact', () => (
}
isCompact={true}
activityDescription={description text}
comments={comment text}
timeStamp="timeStamp text"
/>
))
.addStory('CompactPersonas', () => (
description text}
comments={comment text}
timeStamp="timeStamp text"
/>
));