fui-fancyui
Version:
FancyUI Libary
37 lines (36 loc) • 973 B
TypeScript
import { StoryObj } from '@storybook/react';
declare const meta: {
component: import('react').ForwardRefExoticComponent<import('../TTextInput.model').TTextInput & import('../TTextInput.model').TTextInputNativeAttrs & import('react').RefAttributes<HTMLInputElement>>;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
value: {
description: string;
type: {
name: "string";
};
};
align: {
description: string;
control: {
type: "select";
};
options: string[];
table: {
defaultValue: {
summary: string;
};
};
};
};
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;