Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 2x | <div class="form-check form-switch d-inline-block">
<input
autocomplete="off"
class="form-check-input"
role="switch"
type="checkbox"
[attr.aria-label]="ariaLabel"
[checked]="active"
[disabled]="disabled"
[id]="id"
(click)="toggleState()"
/>
<label class="form-check-label" data-testing-id="formCheckLabel" [for]="id">{{
activeState ? labelActive : labelInactive
}}</label>
</div>
|