UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

27 lines (26 loc) 621 B
import { StoryObj } from '@storybook/html'; import { ButtonProps } from './Button'; declare const meta: { title: string; render: (args: ButtonProps) => DocumentFragment; argTypes: { size: { control: string; options: string[]; }; variant: { control: string; options: string[]; }; text: { control: string; }; onClick: { action: string; }; }; }; export default meta; type Story = StoryObj<ButtonProps>; export declare const Solid: Story; export declare const Soft: Story;