import { Meta, StoryObj } from '@storybook/angular';
import { BulletComponent, ThemeComponentsVariantsArray } from '../../public-api';

const meta: Meta<BulletComponent> = {
  title: 'Components/Bullet',
  id: 'bullet',
  component: BulletComponent,
  argTypes: {
    variant: {
      description: 'Bullet variant theme',
      options: ThemeComponentsVariantsArray
    },
    customColor: {
      control: {
        type: 'color'
      }
    }
  },
  parameters: {
    docs: {
      imports: [BulletComponent]
    }
  }
};

export default meta;

type Story = StoryObj<BulletComponent>;

export const Bullet: Story = {};
