├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── renovate.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── screenshots └── custom-cursor-react.gif └── src ├── .eslintrc ├── Cursor.js ├── index.js ├── index.test.js ├── styles.module.css └── utils └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | node_modules/ 4 | .snapshots/ 5 | *.min.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/custom-cursor-react.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/screenshots/custom-cursor-react.gif -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/Cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/src/Cursor.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/src/styles.module.css -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmnz/custom-cursor-react/HEAD/src/utils/index.js --------------------------------------------------------------------------------