UNPKG

fui-fancyui

Version:
102 lines (101 loc) 2.6 kB
import { StoryObj } from '@storybook/react'; import { default as FancyLine } from '../FancyLine'; declare const meta: { component: typeof FancyLine; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { direction: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; thickness: { description: string; table: { defaultValue: { summary: string; }; }; control: { type: "text"; }; }; margin: { description: string; control: { type: "text"; }; }; length: { description: string; control: { type: "text"; }; table: { defaultValue: { summary: string; }; }; }; isActive: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; systemMessageType: { description: string; control: { type: "select"; }; defaultValue: undefined; options: (string | undefined)[]; }; themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;