Component that allows users to switch between light and dark themes.
import React from "react"; import { ThemeSwitcher } from "@/components/ui/theme-switcher"; export const ThemeSwitcherDemo = () => { return ( <div className="h-[100vh] flex items-center justify-center px-4"> <ThemeSwitcher /> </div> ); };
Part of Geist — browse the full library on 21st.dev.