@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
26 lines (25 loc) • 619 B
TypeScript
import { StoryObj } from '@storybook/html';
import { SeparatorProps } from './Separator';
declare const meta: {
title: string;
render: (args: SeparatorProps) => DocumentFragment;
argTypes: {
space: {
control: {
type: string;
min: number;
max: number;
};
};
padding: {
control: {
type: string;
min: number;
max: number;
};
};
};
};
export default meta;
type Story = StoryObj<SeparatorProps>;
export declare const Normal: Story;