@wonderflow/react-components
Version:
UI components from Wonderflow's Wanda design system
16 lines • 876 B
TypeScript
import { ComponentMeta, ComponentStory } from '@storybook/react';
import React from 'react';
import { Toggle } from './toggle';
declare const story: ComponentMeta<typeof Toggle>;
export default story;
export declare const Default: ComponentStory<typeof Toggle>;
export declare const Checked: ComponentStory<typeof Toggle>;
export declare const DisabledChecked: ComponentStory<typeof Toggle>;
export declare const withLabel: ComponentStory<typeof Toggle>;
export declare const withConstraint: ComponentStory<React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & {
disabled?: boolean | undefined;
label?: string | undefined;
dimension?: "small" | "regular" | undefined;
onChange?: ((event: React.ChangeEvent<HTMLInputElement>) => void) | undefined;
} & React.RefAttributes<HTMLInputElement>>>;
//# sourceMappingURL=toggle.stories.d.ts.map