fui-fancyui
Version:
FancyUI Libary
67 lines (66 loc) • 1.85 kB
TypeScript
import { default as React } from 'react';
import { StoryObj } from '@storybook/react';
declare const meta: {
component: React.ForwardRefExoticComponent<import('..').TPasswordInputProps & import('..').TNativePassowrdInputAttrs & React.RefAttributes<HTMLInputElement>>;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
value: {
description: string;
type: {
name: "string";
};
};
align: {
description: string;
control: {
type: "radio";
};
table: {
defaultValue: {
summary: string;
};
};
};
customEyeCrossed: {
description: string;
};
customEyeOpen: {
description: string;
};
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;