Checkbox

Checkboxes are best for selecting any number of choices

Checkboxes are best used when a user can select any number of choices (none, one, or several). They can be used on their own or in a group.

ConfigurationValue
RequiredToggle on/off if required
LabelEnter a label for your checkbox input
892

Checkboxes can be either checked or unchecked.

Theme-able Classes

.themeable_input_checkbox {
  // styling of the root of the entire input
}

.themeable_input_checkbox_checkbox {
  // styling of the actual box containing the checkmark that is clickable
}

.themeable_input_checkbox_checkmark {
  // styling of the checkmark itself 
}

.themeable_input_checkbox_label {
  // styling of the label that accompanies the checkbox
}