├── .babelrc ├── .env ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── __mocks__ ├── fileMock.js └── styleMock.js ├── demo └── index.html ├── index.tsx ├── jest.config.ts ├── package.json ├── src ├── Cursor │ ├── Cursor.css │ ├── Cursor.css.map │ ├── Cursor.scss │ ├── Cursor.test.tsx │ ├── Cursor.tsx │ └── types.ts ├── demo.css ├── demo.css.map ├── demo.scss ├── demo.tsx ├── helpers │ └── isDevice.ts └── hooks │ └── useFollowCursor.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | GENERATE_SOURCEMAP=false -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = "test-file-stub"; 2 | -------------------------------------------------------------------------------- /__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/demo/index.html -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/index.tsx -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/package.json -------------------------------------------------------------------------------- /src/Cursor/Cursor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/Cursor/Cursor.css -------------------------------------------------------------------------------- /src/Cursor/Cursor.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/Cursor/Cursor.css.map -------------------------------------------------------------------------------- /src/Cursor/Cursor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/Cursor/Cursor.scss -------------------------------------------------------------------------------- /src/Cursor/Cursor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/Cursor/Cursor.test.tsx -------------------------------------------------------------------------------- /src/Cursor/Cursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/Cursor/Cursor.tsx -------------------------------------------------------------------------------- /src/Cursor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/Cursor/types.ts -------------------------------------------------------------------------------- /src/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/demo.css -------------------------------------------------------------------------------- /src/demo.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/demo.css.map -------------------------------------------------------------------------------- /src/demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/demo.scss -------------------------------------------------------------------------------- /src/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/demo.tsx -------------------------------------------------------------------------------- /src/helpers/isDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/helpers/isDevice.ts -------------------------------------------------------------------------------- /src/hooks/useFollowCursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/src/hooks/useFollowCursor.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirho1/react-special-cursor/HEAD/yarn.lock --------------------------------------------------------------------------------