UNPKG

fui-fancyui

Version:
97 lines (96 loc) 2.45 kB
import { StoryObj } from '@storybook/react'; import { default as SwipeUpModal } from '../SwipeUpModal'; declare const meta: { component: typeof SwipeUpModal; title: string; parameters: { docs: { description: { component: string; }; story: { height: string; }; }; }; argTypes: { backdrop: { description: string; type: { name: "boolean"; }; table: { defaultValue: { summary: 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; }; }; }; isOpen: { description: string; type: { name: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; isCloseable: { description: string; type: { name: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; isScalable: { description: string; type: { name: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; onClose: { description: string; type: { name: "function"; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;