Components
Loading preview...
A little particle animation on submit
@kokonutd
npx shadcn@latest add https://21st.dev/r/kokonutd/particle-buttonimport { ParticleButton } from "@/components/ui/particle-button"
import { Button } from "@/components/ui/button"
import { LucideIcon } from "lucide-react"
function ParticleButtonDemo() {
return (
<ParticleButton successDuration={1000} variant="default">
Click me!
</ParticleButton>
)
}
export { ParticleButtonDemo }