2024-02-17 23:50:27 +01:00
|
|
|
import type { Meta, StoryObj } from '@storybook/svelte';
|
2024-02-20 15:08:56 +01:00
|
|
|
import { AlertFill16 } from 'svelte-octicons';
|
2024-02-17 23:50:27 +01:00
|
|
|
|
|
|
|
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 = {};
|