@kloudlite/design-system
Version:
A design system for building ambitious products.
13 lines (12 loc) • 449 B
TypeScript
type checkedType = boolean | string | undefined;
interface ICheckbox {
checked?: checkedType;
onChange?: (check: checkedType) => void;
disabled?: boolean;
error?: boolean;
indeterminate?: boolean;
withBounceEffect?: boolean;
label: string;
}
export declare const Checkbox: ({ checked, onChange, disabled, error, indeterminate, label, withBounceEffect, }: ICheckbox) => import("react/jsx-runtime").JSX.Element;
export {};