mempool/frontend/src/app/shared/components/toggle/toggle.component.html
2022-07-27 10:48:27 +02:00

9 lines
344 B
HTML

<div class="d-flex align-items-center justify-content-end">
<span style="margin-bottom: 0.5rem">{{ textLeft }}</span>&nbsp;
<label class="switch">
<input type="checkbox" (change)="onToggleStatusChanged($event)">
<span class="slider round"></span>
</label>
&nbsp;<span style="margin-bottom: 0.5rem">{{ textRight }}</span>
</div>