Checkbox
A checkbox is a form element that allows the user to select one or more options from a set of choices.
Import
import { Checkbox } from "@aeonkit/react";Usage
Checked
A checkbox can be checked by default.
<Checkbox onChange={() => null} checked />Unchecked
A checkbox can be unchecked by default.
<Checkbox />Props
API Interface: CheckboxProps