import type { Meta, StoryObj } from '@storybook/nextjs' import Divider from '.' const meta = { title: 'Base/Layout/Divider', component: Divider, parameters: { docs: { description: { component: 'Lightweight separator supporting horizontal and vertical orientations with gradient or solid backgrounds.', }, source: { language: 'tsx', code: ` `.trim(), }, }, }, tags: ['autodocs'], } satisfies Meta export default meta type Story = StoryObj export const Horizontal: Story = {} export const Vertical: Story = { render: args => (
Filters Tags
), parameters: { docs: { source: { language: 'tsx', code: ` `.trim(), }, }, }, }