/** * Pagination Stories * @generated 2025-12-11T14:37:52.613327 */ import type { Meta, StoryObj } from '@storybook/preact'; import { Pagination, type PaginationProps } from '../src/atoms/Pagination'; const meta: Meta = { title: '3. Molecules/Pagination', component: Pagination, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated Pagination component **Classification:** molecule **Slots:** None **Figma ID:** 133:11358` } } }, argTypes: { type: { control: 'select', options: ['Next', 'Previous'], description: 'Type variant', }, state: { control: 'select', options: ['Disabled', 'Regular'], description: 'State variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: 'Next', state: 'Disabled', children: 'Pagination' }, };