Components
Loading preview...
Cool Toggles with framer motion animations that you can copy-paste into your apps.
@ayushmxxn
npx shadcn@latest add https://21st.dev/r/ayushmxxn/theme-toggleimport { ThemeToggle } from "@/components/ui/theme-toggle"
function DefaultToggle() {
return (
<div className="space-y-2 text-center">
<div className="flex justify-center">
<ThemeToggle />
</div>
</div>
)
}
export { DefaultToggle }