import React from 'react'; import { ComponentStory, ComponentMeta } from '@storybook/react'; import { Row } from 'components/layout'; import { Text } from 'components/text'; import { Divider } from './index'; export default { title: 'Design System/Divider', component: Divider, argTypes: { colorVariant: { options: ['divider', 'divider-01'], control: { type: 'select' }, }, directionVariant: { options: ['horizontal', 'vertical'], control: { type: 'select' }, }, backgroundColor: { options: ['success', 'secondary', 'white'], control: { type: 'select' }, }, }, } as ComponentMeta; export const Interactive: ComponentStory = (args) => { return ( <> Left Right ); }; Interactive.args = { colorVariant: 'divider', size: 1, directionVariant: 'horizontal', backgroundColor: 'divider', };