<div class="form-check disabled">
    <input class="form-check-input" type="checkbox" value="" id="exampleOption2" disabled>
    <label class="form-check-label" for="exampleOption2">
        Option is disabled
    </label>
</div>
        
    
        <div class="form-check{% if validation.class %} has-{{ validation.class }}{% endif %}{% if disabled %} disabled{% endif %}{% if styleModifier %} {{ styleModifier }}{% endif %}">
  <input class="form-check-input"
          type="checkbox"
          value="{{ value }}"
          {%- if id %} id="{{ id }}"{% endif -%}
          {%- if name %} name="{{ name }}"{% endif -%}
          {%- if checked %} checked{% endif -%}
          {%- if disabled %} disabled{% endif %} >
  <label class="form-check-label" for="{{ id }}">
    {{ label }}
  </label>
</div>
    
        
            
            {
  "label": "Option is disabled",
  "id": "exampleOption2",
  "disabled": true
}
            
        
    
                                @charset 'UTF-8';
/**
 * Add a focus style on checkbox
 *
 * The same style apply for radio buttons
 */
.form-check-input:focus {
  @include vd-focus;
}
                            
                            
                        No notes defined.