UNPKG

fui-fancyui

Version:
104 lines (103 loc) 2.65 kB
import { StoryObj } from '@storybook/react'; import { default as ListBox } from '../ListBox'; declare const meta: { component: typeof ListBox; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { sizeC: { description: string; control: { type: "select"; options: string[]; }; table: { defaultValue: { summary: string; }; }; }; externalStyle: { description: string; control: { type: "object"; }; }; borderRadius: { description: string; control: { type: "object"; }; }; boxShadow: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; outlined: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; outlinedBackgroundStrength: { description: string; control: { type: "number"; min: number; max: number; step: number; }; 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; }; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;