Components
Loading preview...
A toggle switch component built on Base UI Switch with animated thumb.
npx shadcn@latest add https://21st.dev/r/coss.com/switchimport { Switch } from "@/components/ui/component";
export default function Particle() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background">
<Switch className="[--thumb-size:--spacing(4)] sm:[--thumb-size:--spacing(3)]" />
</div>
);
}