<script>
import { UIButton, UIInput, Ripple, IconButton, Switch, Card } from 'svelte-toolbox@latest';
let value = "";
let darkMode = false;
</script>
<style>
div {
overflow: auto;
}
.left {
float: left;
}
.right {
float: right;
height: 48px;
}
.switch-text-container {
line-height: 48px;
}
.disabled {
opacity: 0.4;
}
.rounded {
border-radius: 3px;
}
.switch-container {
max-width: 800px;
margin: auto;
padding: 5px 20px;
background-color: rgba(0, 0, 0, 0.1);
border-bottom: 0.1px solid rgba(0, 0, 0, 0.2)
}