fui-fancyui
Version:
FancyUI Libary
133 lines (132 loc) • 3.36 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancySideBarItem } from '../FancySideBarItem';
declare const meta: {
title: string;
component: typeof FancySideBarItem;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
outlined: {
description: string;
control: {
type: "boolean";
};
};
outlinedBackgroundStrength: {
description: string;
control: {
type: "number";
min: number;
max: number;
step: number;
};
};
externalStyle: {
description: string;
control: {
type: "object";
};
};
sizeC: {
description: string;
control: {
type: "select";
options: string[];
};
table: {
defaultValue: {
summary: string;
};
};
};
direction: {
description: string;
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
justify: {
description: string;
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
noMargin: {
description: string;
control: {
type: "boolean";
};
};
wide: {
description: string;
control: {
type: "boolean";
};
};
hoverLayer: {
description: string;
control: {
type: "number";
min: number;
max: number;
step: number;
};
};
typographySettings: {
description: string;
control: {
type: "object";
};
};
iconSettings: {
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;
};
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const BarFormat: Story;