import React from 'react'; import { ComponentMeta, ComponentStory } from '@storybook/react'; import { AddIcon } from '@100mslive/react-icons'; import { Button } from '../Button'; import { Flex } from '../Layout'; import { Text } from '../Text'; import { VerticalDivider } from '.'; export default { title: 'UI Components/Divider', component: VerticalDivider, argTypes: { ref: { table: { disable: true }, control: { type: null } }, as: { table: { disable: true }, control: { type: null } }, css: { control: { type: 'object' } }, space: { defaultValue: 1, control: { type: 'number', min: 1, max: 4 } }, }, } as ComponentMeta; const VerticalDividerComponent: ComponentStory = ({ space, css }) => { return ( ); }; export const Vertical = VerticalDividerComponent.bind({});