fui-fancyui
Version:
FancyUI Libary
96 lines (95 loc) • 2.4 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { SkeletonBox } from '..';
declare const meta: {
component: typeof SkeletonBox;
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;
};
};
};
aspectRatio: {
description: string;
control: {
type: "text";
};
};
sizeH: {
description: string;
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
sizeW: {
description: string;
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
borderRadius: {
description: string;
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
externalStyle: {
description: string;
control: {
type: "object";
};
};
index: {
description: string;
control: {
type: "number";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const List: Story;