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