react-dot-cursor
v1.0.0
Published
A fully customizable cursor component animated with Motion for React.
Maintainers
Readme
Features
- 🚀 Easy to use
- 🔍 Auto-detects content types
- 🚫 Respects disabled attribute
- 🔠 Scales with text size
- 🎥 Animated with motion
- 🎨 Customizable
Installation
With pnpm
pnpm add react-dot-cursorWith NPM
npm install react-dot-cursorGetting Started
Add the Cursor component to your app:
import { Cursor } from 'react-dot-cursor';
const App = () => {
return (
<div>
<Cursor />
</div>
);
};Then remove the default cursor with CSS:
* {
cursor: none !important;
}Documentation
Find the full API reference on official documentation.
