"use client"; import clsx from "clsx"; import { MoonIcon, SunIcon } from "lucide-react"; import { useTheme } from "../../hooks"; import type { ComponentPropsWithoutRef } from "react"; import type { LucideIcon } from "lucide-react"; import styles from "./ThemeToggle.module.css"; export type ThemeToggleProps = ComponentPropsWithoutRef; const ThemeToggle = ({ className, ...rest }: ThemeToggleProps) => { const [theme, setTheme] = useTheme(); return ( ); }; export default ThemeToggle;