Exploding InputInput component that spawns particle effects when typing.inputanimationparticlesexplodingform PreviewCodeCopy"use client"; import { ExplodingInput } from "@/components/vritti/exploding-input"; export function ExplodingInputExample() { return ( <div className="flex items-center justify-center p-8"> <label className="relative"> <input type="text" placeholder="Type something..." className="rounded-lg border border-border bg-background px-4 py-2 text-foreground outline-none" /> <ExplodingInput content={["🎉", "✨", "💥", "⭐"]} count={3} /> </label> </div> ); } Installation CLIManualpnpmnpmyarnbunpnpm dlx shadcn@latest add "https://vritti.thesatyajit.com/r/exploding-input"Copy