Components
Loading preview...
Fire ball mouse pointer action with props
npx shadcn@latest add https://21st.dev/r/designali-in/fire-ballimport { FireBall } from "@/components/ui/fire-ball";
export default function DemoOne() {
return (
<div className="h-full w-full flex items-center justify-center relative">
<FireBall />
<h1 className="tracking-tighter text-7xl font-bold text-center z-10">
Fire Ball
</h1>
</div>
);
}