import type { Meta, StoryObj } from '@storybook/vue3'; import AlignCenterIcon from './AlignCenterIcon.vue'; const meta: Meta = { title: 'Icons/AlignCenter', component: AlignCenterIcon, tags: ['autodocs'], argTypes: { size: { control: 'select', options: ['10', '20', '30', '40', '50', '60'] }, }, args: { color: 'white', }, } satisfies Meta; export default meta; type Story = StoryObj; export const Primary: Story = { args: { color: 'black', }, };