fui-fancyui
Version:
FancyUI Libary
88 lines (87 loc) • 2.28 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancySystemMessageBox } from '../FancySystemMessageBox';
declare const meta: {
component: typeof FancySystemMessageBox;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
sizeC: {
description: string;
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
icon: {
description: string;
control: {
type: "object";
};
};
title: {
description: string;
control: {
type: "text";
};
};
description: {
description: string;
control: {
type: "text";
};
};
gapBetweenIcon: {
description: string;
control: {
type: "text";
};
};
gapBetweenText: {
description: string;
control: {
type: "text";
};
};
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 Error: Story;
export declare const Info: Story;
export declare const Success: Story;
export declare const Warning: Story;