import { SmoothCursor } from "@/registry/magicui/smooth-cursor"
export default function SmoothCursorDemo() {
return (
<>
<span className="hidden md:block">Move your mouse around</span>
<span className="block md:hidden">Tap anywhere to see the cursor</span>
<SmoothCursor />
</>
)
}
npx shadcn@latest add @magicui/smooth-cursor-demoimport { SmoothCursorDemo } from "@/components/smooth-cursor-demo"<SmoothCursorDemo />