From 17bbf90b09df66880640fea83de2e1699c612d5f Mon Sep 17 00:00:00 2001 From: Aidan Bleser Date: Tue, 17 Jun 2025 10:40:19 -0500 Subject: [PATCH] top right header --- .../components/ui/light-switch/light-switch.svelte | 4 ++-- src/lib/components/ui/light-switch/types.ts | 1 + src/markdown.css | 8 +++++++- src/routes/account/+page.svelte | 0 src/routes/chat/+layout.svelte | 11 ++++++++++- 5 files changed, 20 insertions(+), 4 deletions(-) create mode 100644 src/routes/account/+page.svelte diff --git a/src/lib/components/ui/light-switch/light-switch.svelte b/src/lib/components/ui/light-switch/light-switch.svelte index 5aaa0d5..b450948 100644 --- a/src/lib/components/ui/light-switch/light-switch.svelte +++ b/src/lib/components/ui/light-switch/light-switch.svelte @@ -9,10 +9,10 @@ import { Button } from '$lib/components/ui/button/index.js'; import type { LightSwitchProps } from './types'; - let { variant = 'outline' }: LightSwitchProps = $props(); + let { variant = 'outline', class: className }: LightSwitchProps = $props(); - + +