fui-fancyui
Version:
FancyUI Libary
102 lines (101 loc) • 2.82 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { FancyContent } from '../index';
declare const meta: {
component: typeof FancyContent;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
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;
};
};
};
layoutMode: {
description: string;
control: {
type: "select";
};
options: string[];
};
alignIcon: {
description: string;
control: {
type: "radio";
};
options: string[];
};
gap: {
description: string;
control: {
type: "text";
};
};
gapBetweenIcon: {
description: string;
control: {
type: "text";
};
};
gapBetweenText: {
description: string;
control: {
type: "text";
};
};
justify: {
description: string;
control: {
type: "select";
};
options: string[];
};
align: {
description: string;
control: {
type: "select";
};
options: string[];
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const NormalLayout: Story;
export declare const StackLayout: Story;
export declare const RowLayout: Story;
export declare const RightAlignedIcon: Story;
export declare const AutoLayout: Story;
export declare const WithImage: Story;
export declare const CustomSpacing: Story;
export declare const OnlyIconAndDescription: Story;
export declare const OnlyIconAndDescriptionRightAligned: Story;
export declare const OnlyIconAndDescriptionStack: Story;
export declare const AlignmentVariations: Story;
export declare const SingleElements: Story;