Don'ts
Show only
Checkboxes typically only trigger changes after sending a form. If your component should trigger a change immediately, it's better to use a toggle switch instead. Furthermore, checkboxes are not mutually exclusive. That means that selecting one will not disable the others or impact them in any other way. If you want to offer a mutually exclusive choice, use RadioButtonGroup or a Select dropdown.
Usage
import { Forms } from '@grafana/ui';<Checkbox value={true|false} label={...} description={...} onChange={...} />