fui-fancyui
Version:
FancyUI Libary
60 lines (59 loc) • 1.71 kB
TypeScript
import { StoryObj } from '@storybook/react';
declare const meta: {
component: import('react').ForwardRefExoticComponent<import('..').TSwipeUpContainer & import('react').HTMLAttributes<HTMLDivElement> & import('react').RefAttributes<HTMLDivElement>>;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
isScalable: {
description: string;
type: {
name: "boolean";
};
control: {
type: "boolean";
};
table: {
defaultValue: {
summary: string;
};
};
};
children: {
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;