Anvil/stories/icons/Repo24.stories.ts
André Jaenisch b0366f26ed
feat: create stories for Profile
I also updated the icons to reflect all in use.

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

18 lines
347 B
TypeScript

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