Anvil/stories/icons/Upload16.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
371 B
TypeScript

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