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