You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
374 B

  1. <script lang="ts">
  2. import BFormOption from "./BFormOption.svelte";
  3. export let value: boolean | null;
  4. function toggle() {
  5. if (value === null) {
  6. value = true;
  7. } else if (value === true) {
  8. value = false;
  9. } else {
  10. value = null;
  11. }
  12. }
  13. </script>
  14. <BFormOption icon="power" on:click={toggle} state={value} color="#00FF00"></BFormOption>