Files
lucent-laravel/front/js/svelte/common/SwitchButton.svelte
T
2024-07-22 18:00:58 +03:00

14 lines
300 B
Svelte

<script>
import {uniqueId} from "lodash";
export let label = "";
let id = uniqueId();
</script>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id={id} checked>
<label class="form-check-label" for={id}>{label}</label>
</div>