fui-fancyui
Version:
FancyUI Libary
58 lines (57 loc) • 1.39 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { DescriptionPreview } from '.';
declare const meta: {
component: typeof DescriptionPreview;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
description: {
description: string;
type: {
required: true;
name: "string";
};
control: {
type: "text";
};
};
letterLimit: {
description: string;
type: {
name: "number";
required: false;
};
control: {
type: "number";
};
table: {
defaultValue: {
summary: string;
};
};
};
buttonText: {
description: string;
control: {
type: "object";
};
defaultValue: {
typographyVariant: string;
showLess: string;
showMore: string;
themeType: string;
layer: number;
};
};
};
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;