"use client"; import { useTheme } from "@/shared/hooks/useTheme"; import { cn } from "@/shared/utils/cn"; export default function ThemeToggle({ className, variant = "default" }) { const { isDark, toggleTheme } = useTheme(); const variants = { default: cn( "flex items-center justify-center size-10 rounded-full", "text-text-muted hover:text-text-main", "hover:bg-surface-2 transition-colors" ), card: cn( "flex items-center justify-center size-11 rounded-full", "bg-surface/60 hover:bg-surface", "border border-border", "backdrop-blur-md shadow-sm hover:shadow-[var(--shadow-warm)]", "text-text-muted hover:text-brand-500", "transition-all group" ), }; return ( ); }