import { Moon, Sun } from 'lucide-react' import { useTheme } from 'next-themes' import { Button } from '@evobgp/ui/components/button' import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from '@evobgp/ui/components/dropdown-menu' export function ModeToggle() { const { setTheme } = useTheme() return ( }> Сменить тему setTheme('light')}>Светлая setTheme('dark')}>Тёмная setTheme('system')}>Системная ) }