Animated theme switcher button with just tailwind css.
1
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
2
npm install
3
npm run dev