Anvil/stories/icons/AlertFill16.stories.ts

19 lines
367 B
TypeScript
Raw Normal View History

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