ChatiumFor developersPlaygroundPricing
Sign in

Checkbox

<Checkbox checked={false} name={'activity'}>
  Checkbox label content
</Checkbox>

interface CheckboxProps {
  checked?: boolean
  name?: string
}