Switch

Switches are used to input boolean values.

# Switch

html
<input class="switch" type="checkbox" />

# Square switch

html
<input class="switch switch-square" type="checkbox" />

# Colorized switches

html
<div class="flex flex-wrap gap-4">
  <input class="switch switch-primary" type="checkbox" />
  <input class="switch switch-secondary" type="checkbox" />
  <input class="switch switch-success" type="checkbox" />
  <input class="switch switch-warning" type="checkbox" />
  <input class="switch switch-error" type="checkbox" />
</div>