@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
8 lines (7 loc) • 465 B
TypeScript
/// <reference types="react" />
import type { IPropsCheckbox } from './ICheckbox';
/**
* The Checkbox most commonly used to give merchants a way to make a range of selections (zero, one, or multiple). They may also be used as a way to have merchants indicate they agree to specific terms and services.
*/
declare const Checkbox: import("react").ForwardRefExoticComponent<IPropsCheckbox & import("react").RefAttributes<HTMLInputElement>>;
export default Checkbox;