fui-fancyui
Version:
FancyUI Libary
112 lines (111 loc) • 2.55 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as TabSwitch } from '../TabSwitch';
declare const meta: {
component: typeof TabSwitch;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
wide: {
description: string;
control: {
type: "boolean";
};
};
sizeC: {
description: string;
control: {
type: "select";
options: string[];
};
};
textColor: {
description: string;
control: {
type: "select";
};
};
textLayer: {
description: string;
control: {
type: "number";
min: number;
max: number;
};
};
tabSpacing: {
description: string;
control: {
type: "select";
};
};
values: {
description: string;
control: {
type: "object";
};
};
borderRadius: {
description: string;
control: {
type: "select";
};
};
direction: {
description: string;
control: {
type: "select";
};
};
indicatorType: {
description: string;
control: {
type: "select";
};
};
outlined: {
description: string;
control: {
type: "boolean";
};
};
currentSelect: {
description: string;
control: {
type: "text";
};
};
iconAlign: {
description: string;
control: {
type: "select";
};
};
activeTextThemeType: {
description: string;
control: {
type: "select";
};
};
handler: {
description: string;
control: {
type: "object";
};
};
disabled: {
description: string;
control: {
type: "boolean";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;