From e4a7020345a31bfe51f833eab6a24a0ab34bceb8 Mon Sep 17 00:00:00 2001 From: Jeppe Reinhold Date: Thu, 20 Oct 2022 00:02:19 +0200 Subject: [PATCH] migrate ListItem to csf3 --- .../src/tooltip/ListItem.stories.tsx | 79 +++++++++++++++---- 1 file changed, 63 insertions(+), 16 deletions(-) diff --git a/code/ui/components/src/tooltip/ListItem.stories.tsx b/code/ui/components/src/tooltip/ListItem.stories.tsx index 3809e910167..d1210e66ab1 100644 --- a/code/ui/components/src/tooltip/ListItem.stories.tsx +++ b/code/ui/components/src/tooltip/ListItem.stories.tsx @@ -1,11 +1,14 @@ import React from 'react'; -import { storiesOf } from '@storybook/react'; import ListItem from './ListItem'; - import { Icons } from '../icon/icon'; -storiesOf('basics/Tooltip/ListItem', module) - .add('all', () => ( +export default { + title: 'basics/Tooltip/ListItem', + component: ListItem, +}; + +export const All = { + render: (args) => (
@@ -21,15 +24,59 @@ storiesOf('basics/Tooltip/ListItem', module) />
- )) - .add('loading', () => ) - .add('default', () => ) - .add('default icon', () => } />) - .add('active icon', () => } />) - .add('w/positions', () => ) - .add('w/positions active', () => ( - - )) - .add('disabled', () => ( - - )); + ), +}; + +export const Default = { + args: { + title: 'Default', + }, +}; + +export const Loading = { + args: { + loading: true, + }, +}; + +export const DefaultIcon = { + args: { + title: 'Default icon', + right: , + }, +}; +export const ActiveIcon = { + args: { + title: 'Active icon', + active: true, + right: , + }, +}; + +export const WPositions = { + args: { + left: 'left', + title: 'title', + center: 'center', + right: 'right', + }, +}; + +export const WPositionsActive = { + args: { + active: true, + left: 'left', + title: 'title', + center: 'center', + right: 'right', + }, +}; +export const WPositionsDisabled = { + args: { + disabled: true, + left: 'left', + title: 'title', + center: 'center', + right: 'right', + }, +};