/** * .Date Picker / Header Stories * @generated 2025-12-11T14:37:52.593775 */ import type { Meta, StoryObj } from '@storybook/preact'; import { DatePickerHeader, type DatePickerHeaderProps } from '../src/atoms/DatePickerHeader'; const meta: Meta = { title: '3. Molecules/DatePickerHeader', component: DatePickerHeader, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated DatePickerHeader component **Classification:** molecule **Slots:** icon **Figma ID:** 264:29273` } } }, argTypes: { type: { control: 'select', options: ['1 Month', '2 Months', '3 Months', 'Only Month', 'Only Year', 'Year and Month'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: '1 Month', children: 'DatePickerHeader' }, };