ds-smart-ui
Version:
Smart UI is a React component library that helps you build accessible and responsive web applications.
16 lines (14 loc) • 524 B
TypeScript
import { FormColorTypes, FormSizeTypes } from '../../../types/form-types';
declare const Checkbox: import('react').ForwardRefExoticComponent<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "size"> & {
label?: string;
checked?: boolean;
disabled?: boolean;
rounded?: boolean;
color?: FormColorTypes;
size?: FormSizeTypes;
required?: boolean;
helperText?: string;
error?: boolean;
id?: string;
} & import('react').RefAttributes<HTMLInputElement>>;
export default Checkbox;