import { useTheme } from '../../hooks/useTheme'; import { usePreferenceStore } from '@/lib/stores/preferenceStore'; import { Label } from '../../ui/label'; import { Switch } from '../../ui/switch'; import { Moon, Sun, Zap } from 'lucide-react'; export function AppearanceSection() { const { theme, toggleTheme } = useTheme(); const { isStreaming, setStreaming } = usePreferenceStore(); return (

Customize the look and feel of the application.

{/* Theme Setting */}
{theme === 'dark' ? ( ) : ( )}

Switch between light and dark themes

{/* Streaming Setting */}

Show responses as they are generated (recommended)

); }