/** * Scrollbar Stories * @generated 2025-12-11T14:37:52.622244 */ import type { Meta, StoryObj } from '@storybook/preact'; import { Scrollbar, type ScrollbarProps } from '../src/atoms/Scrollbar'; const meta: Meta = { title: '2. Atoms/Scrollbar', component: Scrollbar, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated Scrollbar component **Classification:** atom **Slots:** None **Figma ID:** 164:18669` } } }, argTypes: { type: { control: 'select', options: ['Horizontal', 'Vertical'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: 'Horizontal', children: 'Scrollbar' }, };