A simple switch component for sveltev3. Example can be found here.
npm i -D @mbeineris/svelte-switch
<script>
import Switch from './Switch.svelte';
let yes = false;
</script>
<Switch bind:checked={yes}></Switch>
This project is licensed under the MIT License.