Auxx.ai

<Checkbox />

Boolean checkbox component for Auxx app dialogs.

A checkbox for toggling boolean values.

import { Checkbox, Label } from '@auxx/sdk/client'

<Checkbox checked={agreed} onChange={(checked) => setAgreed(checked)} />
<Label>I agree to the terms</Label>

Props

PropTypeDefaultDescription
checkedboolean?falseWhether the checkbox is checked
disabledboolean?falseDisable the checkbox
onChange(checked: boolean) => voidCalled with the new checked state

On this page