Skip to content
Snippets Groups Projects
PageDeleteIcon.stories.ts 514 B
Newer Older
import type { Meta, StoryObj } from '@storybook/vue3';

import PageDeleteIcon from './PageDeleteIcon.vue';

const meta: Meta = {
  title: 'Icons/PageDelete',
  component: PageDeleteIcon,
  tags: ['autodocs'],
  argTypes: {
    size: { control: 'select', options: ['10', '20', '30', '40', '50', '60'] },
  },
  args: {
    color: 'white',
  },
} satisfies Meta<typeof PageDeleteIcon>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
  args: {
    color: 'black',
  },
};