b0366f26ed
I also updated the icons to reflect all in use. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
18 lines
367 B
TypeScript
18 lines
367 B
TypeScript
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 = {};
|