@cbinsights/fds
Version:
Form: A design system by CB Insights
31 lines (30 loc) • 1.1 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { CheckboxProps } from '.';
export declare const Primary: StoryObj<CheckboxProps>;
export declare const ManagingCheckedState: StoryObj<CheckboxProps>;
export declare const PreventingUserInteraction: StoryObj<CheckboxProps>;
export declare const CheckboxWithoutLabel: StoryObj<CheckboxProps>;
export declare const IndeterminateCheckboxes: StoryObj<CheckboxProps>;
export declare const ReadingTheValueOfACheckbox: StoryObj<CheckboxProps>;
export declare const UncontrolledCheckbox: StoryObj<CheckboxProps>;
export declare const ControlledCheckbox: StoryObj<{
checkboxLabel: string;
}>;
declare const _default: {
component: ({ showLabel, indeterminate, disabled, label, defaultChecked, checked, id, onChange, ...rest }: CheckboxProps) => JSX.Element;
title: string;
argTypes: {
onChange: {
action: string;
};
};
parameters: {
componentSubtitle: string;
docs: {
fds: {
attributes: string[];
};
};
};
};
export default _default;