Summer Sale – Use code oxbow20 at checkout for a 20% discount.

checkboxes

1
<div class="flex items-center gap-2" x-data="{ checked: false }">
  <input
    id="basic-checkbox"
    name="basic-checkbox"
    type="checkbox"
    x-model="checked"
    class="rounded shadow size-4 border-zinc-300 text-blue-600 focus:ring-blue-600"
  />
  <label class="text-base block text-sm text-zinc-500">
    Basic checkbox (<span x-text="checked ? 'Checked' : 'Unchecked'"></span>)
  </label>
</div>

Basic Checkbox with State Tracking

Checkbox with Disabled State

Checkbox with Hover Tooltip

Indeterminate Checkbox

Checkbox with Counter

Checkbox Group

Checkbox with Indication Badge

Checkbox with Toggle Al

Right-Aligned Checkbox

Checkbox with Expansion

Checkbox with Label and Description

Checkbox with Border and Icon