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