UNPKG

fui-fancyui

Version:
129 lines (128 loc) 3.19 kB
import { StoryObj } from '@storybook/react'; import { default as FancyTabSwitch } from '../FancyTabSwitch'; declare const meta: { component: typeof FancyTabSwitch; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { currentSelect: { description: string; }; switchIndicatorThemeType: { description: string; control: { type: "select"; }; }; activeTextThemeType: { description: string; control: { type: "select"; }; table: { summary: string; }; }; outlined: { description: string; type: { name: "boolean"; }; }; borderRadius: { description: string; control: { type: "object"; }; }; label: { description: string; type: { name: "string"; }; control: { type: "text"; }; }; spacingToEdge: { description: string; control: { type: "select"; }; }; textLayer: { description: string; control: { type: "range"; min: number; max: number; step: number; }; }; 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; }; }; }; wide: { description: string; type: { name: "boolean"; }; }; disabled: { description: string; type: { name: "boolean"; }; }; sizeC: { description: string; control: { type: "select"; }; }; iconAlign: { description: string; control: { type: "radio"; }; }; textColor: { description: string; control: { type: "select"; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story; export declare const Secondary: Story;