/** * Select Menu Overflow Stories * @generated 2025-12-11T14:37:52.625371 */ import type { Meta, StoryObj } from '@storybook/preact'; import { SelectMenuOverflow, type SelectMenuOverflowProps } from '../src/atoms/SelectMenuOverflow'; const meta: Meta = { title: '3. Molecules/SelectMenuOverflow', component: SelectMenuOverflow, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated SelectMenuOverflow component **Classification:** molecule **Slots:** icon **Figma ID:** 28:6842` } } }, argTypes: { scrollDirection: { control: 'select', options: ['Scroll Down', 'Scroll Up'], description: 'Scroll Direction variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { scrollDirection: 'Scroll Down', children: 'SelectMenuOverflow' }, };