import type { Meta, StoryObj } from '@storybook/svelte'; import AlertFill16 from 'svelte-octicons/lib/AlertFill16.svelte'; const meta = { title: 'Icons/AlertFill16', component: AlertFill16, tags: ['autodocs'], argTypes: { fill: { control: 'color' } } } satisfies Meta; export default meta; type Story = StoryObj; export const Plain: Story = {};