import { IconMoon, IconSun } from "@tabler/icons-react"; import cn from "classnames"; import { Button } from "src/components"; import { useTheme } from "src/hooks"; import styles from "./ThemeSwitcher.module.css"; interface Props { className?: string; } function ThemeSwitcher({ className }: Props) { const { setTheme } = useTheme(); return (