Components
Loading preview...
Animated CheckBox
npx shadcn@latest add https://21st.dev/r/ringlabs/animated-check-boximport { NeonCheckbox } from "@/components/ui/animated-check-box";
import React from 'react';
export default function Demo() {
return (
<div className="flex items-center justify-center min-h-screen bg-black">
<div className="flex items-center space-x-2">
<NeonCheckbox />
<span className="text-white">Click me</span>
</div>
</div>
);
}