summaryrefslogtreecommitdiff
path: root/Pages/Component/Switch.razor
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-22 12:46:00 +1000
committerJake Mannens <jake@asger.xyz>2026-05-23 22:13:00 +1000
commit4ea3ddb38d010c2f85c22b7f1c3f2d7e0c1355e3 (patch)
tree90af9203059d645eb77216f1a091722ee9702438 /Pages/Component/Switch.razor
parent6de5d7f5364fe1d54703da6d6b7cb08ea26e939f (diff)
Initial commitwasm-oldserver
Diffstat (limited to 'Pages/Component/Switch.razor')
-rw-r--r--Pages/Component/Switch.razor20
1 files changed, 0 insertions, 20 deletions
diff --git a/Pages/Component/Switch.razor b/Pages/Component/Switch.razor
deleted file mode 100644
index d11ac81..0000000
--- a/Pages/Component/Switch.razor
+++ /dev/null
@@ -1,20 +0,0 @@
-<link rel="stylesheet" href="@(nameof(HyperBooru)).styles.css"/>
-
-<label>
- <input
- type="checkbox"
- checked=@InitialValue
- @onchange=@(e => OnToggle.InvokeAsync((e.Value as bool?) ?? false))
- hidden/>
- <div class="switch-outer">
- <div class="switch-inner"/>
- </div>
-</label>
-
-@code {
- [Parameter]
- public bool InitialValue { get; set; } = false;
-
- [Parameter]
- public EventCallback<bool> OnToggle { get; set; }
-}