CHANGELOG 2.2.11
- Added on/off icons to switch, related to https://m3.material.io/components/switch/guidelines
// defaut switch
<label class="switch">
<input type="checkbox">
<span></span>
</label>
// switch with icon
<label class="switch">
<input type="checkbox">
<span>
<i>wifi</i>
</span>
</label>
// switch with on/off icons
<label class="switch">
<input type="checkbox">
<span>
<i>close</i>
<i>done</i>
</span>
</label>