fui-fancyui
Version:
FancyUI Libary
82 lines (81 loc) • 2.09 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyMiniProfile } from '../FancyMiniProfile';
declare const meta: {
component: typeof FancyMiniProfile;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
sizeC: {
description: string;
control: {
type: "select";
};
options: string[];
};
title: {
description: string;
control: {
type: "text";
};
};
subTitle: {
description: string;
control: {
type: "text";
};
};
alignImage: {
description: string;
control: {
type: "select";
};
options: string[];
};
Image: {
description: string;
control: {
type: "object";
};
};
shadow: {
description: string;
control: {
type: "boolean";
};
};
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;