fui-fancyui
Version:
FancyUI Libary
98 lines (97 loc) • 2.4 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { TextAvatar } from '..';
declare const meta: {
component: typeof TextAvatar;
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;
};
};
};
borderRadius: {
description: string;
control: {
type: "select";
};
};
casing: {
description: string;
control: {
type: "select";
};
};
sizeC: {
description: string;
control: {
type: "select";
};
};
text: {
control: {
type: "text";
};
description: string;
};
letterLength: {
control: {
type: "number";
};
description: string;
};
fontSizes: {
control: {
type: "select";
};
description: string;
};
externalStyle: {
control: {
type: "text";
};
description: string;
};
color: {
control: {
type: "color";
};
description: string;
};
backgroundColor: {
control: {
type: "color";
};
description: string;
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;