import { Monitor, Sun, MoonStar } from 'lucide-react'
import { motion } from 'motion/react'
import { useTranslation } from 'react-i18next'
import { cn } from '@/lib/utils'
import { useTheme } from '@/context/theme-provider'
import { Button } from '@/components/ui/button'
export function ThemeQuickSwitcher() {
const { t } = useTranslation()
const { theme, setTheme } = useTheme()
return (
{t('Theme')}
)
}