@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
22 lines (21 loc) • 500 B
TypeScript
import { StoryObj } from '@storybook/html';
import { SwitchProps } from './Switch';
declare const meta: {
title: string;
render: (args: SwitchProps) => DocumentFragment;
argTypes: {
size: {
control: string;
options: string[];
};
value: {
control: string;
};
onChange: {
action: string;
};
};
};
export default meta;
type Story = StoryObj<SwitchProps>;
export declare const Normal: Story;