Anvil/stories/icons/Info16.stories.ts
André Jaenisch 21a7fc1b54
docs: create Stories for new pages and templates
I also extracted the Icons we use into a story and looked into how I
could potentially allow for changing the locale.

Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
2024-07-04 08:21:35 +02:00

18 lines
361 B
TypeScript

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