UNPKG

fui-fancyui

Version:
121 lines (120 loc) 3.01 kB
import { StoryObj } from '@storybook/react'; import { default as Button } from '../Button'; declare const meta: { component: typeof Button; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { sizeC: { description: string; control: { type: "select"; options: string[]; }; table: { defaultValue: { summary: string; }; }; }; wide: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; borderRadius: { description: string; control: { type: "select"; }; }; outlined: { description: string; control: { type: "boolean"; }; }; textColor: { description: string; control: { type: "select"; }; }; hoverColor: { description: string; control: { type: "select"; }; }; noSize: { description: string; control: { type: "boolean"; }; }; disabled: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; notAButton: { description: string; control: { type: "boolean"; }; }; appendClassNameOnStyle: { description: string; control: { type: "boolean"; }; }; 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; export declare const Outlined: Story;