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