diff --git a/ui/components/theme/Switcher.tsx b/ui/components/theme/Switcher.tsx index 22e2ecc..73b9dcf 100644 --- a/ui/components/theme/Switcher.tsx +++ b/ui/components/theme/Switcher.tsx @@ -7,7 +7,7 @@ import { Select } from '../SettingsDialog'; type Theme = 'dark' | 'light' | 'system'; -const ThemeSwitcher = ({ className }: { className?: string }) => { +const ThemeSwitcher = ({ className, size }: { className?: string, size?: number }) => { const [mounted, setMounted] = useState(false); const { theme, setTheme } = useTheme();