/** * Avatar Stack Stories * @generated 2025-12-11T14:37:52.567049 */ import type { Meta, StoryObj } from '@storybook/preact'; import { AvatarStack, type AvatarStackProps } from '../src/atoms/AvatarStack'; const meta: Meta = { title: '2. Atoms/AvatarStack', component: AvatarStack, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated AvatarStack component **Classification:** atom **Slots:** None **Figma ID:** 22:9509` } } }, argTypes: { size: { control: 'select', options: ['Regular', 'Small'], description: 'Size variant', }, type: { control: 'select', options: ['Default'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { size: 'Regular', type: 'Default', children: 'AvatarStack' }, }; export const SizeRegular: Story = { args: { ...Default.args, size: 'Regular', }, }; export const SizeSmall: Story = { args: { ...Default.args, size: 'Small', }, };