├── .eslintrc.cjs ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── index.ts ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.tsx ├── ButtonFollowCursor.tsx ├── index.css ├── main.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.node.tsbuildinfo ├── tsconfig.tsbuildinfo ├── vite.config.d.ts └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/index.html -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ButtonFollowCursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/src/ButtonFollowCursor.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.node.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/tsconfig.node.tsbuildinfo -------------------------------------------------------------------------------- /tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /vite.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/vite.config.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akicool/button-follow-cursor/HEAD/vite.config.ts --------------------------------------------------------------------------------