UNPKG

fui-fancyui

Version:
63 lines (62 loc) 1.66 kB
import { StoryObj } from '@storybook/react'; import { default as FancyAWrapper } from '../FancyAWrapper'; declare const meta: { component: typeof FancyAWrapper; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { isActive: { description: string; control: { type: "boolean"; }; }; isHoverable: { description: string; control: { type: "boolean"; }; }; externalStyle: { description: string; control: { type: "object"; }; }; 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; }; }; }; }; tags: string[]; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;