UNPKG

fui-fancyui

Version:
58 lines (57 loc) 1.32 kB
import { StoryObj } from '@storybook/react'; import { default as SwitchList } from '../SwitchList'; declare const meta: { component: typeof SwitchList; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { children: { description: string; }; whichIndexIsSelected: { description: string; type: { name: "number"; }; }; activeItemHandler: { description: string; type: { name: "function"; }; }; externalStyle: { description: string; control: { type: "object"; }; }; switchIndicator: { description: string; control: { type: "object"; }; }; flexBoxProps: { description: string; control: { type: "object"; }; }; gap: { description: string; control: { type: "select"; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;