"use client"; import { useTheme } from "@/lib/theme"; import { SunIcon, MoonIcon, MonitorIcon } from "./icons"; const LABELS = { light: "حالت روشن", dark: "حالت تاریک", system: "حالت سیستم", }; const ICONS = { light: SunIcon, dark: MoonIcon, system: MonitorIcon, }; export function ThemeToggle({ className }: { className?: string }) { const { theme, toggle } = useTheme(); const Icon = ICONS[theme]; return ( ); }