import React from 'react'; import type { Meta, StoryObj } from '@storybook/react-vite'; import { Divider } from './Divider'; const meta: Meta = { title: 'UI kit/Divider', component: Divider, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Horizontal: Story = { render: args => (

First section content

Second section content

), args: { orientation: 'horizontal', }, }; export const OnDarkBackground: Story = { render: args => (

First section content

Second section content

), args: { orientation: 'horizontal', }, }; export const Vertical: Story = { render: args => (
Left content Right content
), args: { orientation: 'vertical', }, };