An open API service indexing awesome lists of open source software.

https://github.com/guiepi/react-dot-cursor

A fully customizable cursor component animated with Motion for React.
https://github.com/guiepi/react-dot-cursor

animated-cursor cursor custom-cursor motion-cursor react react-cursor react-dot-cursor

Last synced: 8 months ago
JSON representation

A fully customizable cursor component animated with Motion for React.

Awesome Lists containing this project

README

          



react-dot-cursor - Try it out



NPM Version

Publish Status



A fully customizable cursor component animated with Motion for React.



Website
ยท
Documentation



Cooked by Guillaume Coussot ๐Ÿ‘จโ€๐Ÿณ


## Features

- ๐Ÿš€ Easy to use
- ๐Ÿ” Auto-detects content types
- ๐Ÿšซ Respects disabled attribute
- ๐Ÿ”  Scales with text size
- ๐ŸŽฅ Animated with motion
- ๐ŸŽจ Customizable

## Installation

### With pnpm

```sh
pnpm add react-dot-cursor
```

### With NPM

```sh
npm install react-dot-cursor
```

## Getting Started

Add the `Cursor` component to your app:

```tsx
import { Cursor } from 'react-dot-cursor';

const App = () => {
return (




);
};
```

Then remove the default cursor with CSS:

```css
* {
cursor: none !important;
}
```

## Documentation

Find the full API reference on [official documentation](https://react-dot-cursor.guics.st/docs).