ds-smart-ui
Version:
Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.
18 lines (17 loc) • 638 B
TypeScript
import { FormColorTypes, FormSizeTypes } from '../../../types/form-types';
export type CheckboxVariant = "outlined" | "contained";
declare const Checkbox: import('react').ForwardRefExoticComponent<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "size"> & {
label?: string;
checked?: boolean;
disabled?: boolean;
rounded?: boolean;
variant?: CheckboxVariant;
color?: FormColorTypes;
size?: FormSizeTypes;
required?: boolean;
showRequired?: boolean;
helperText?: string;
error?: boolean;
id?: string;
} & import('react').RefAttributes<HTMLInputElement>>;
export default Checkbox;