├── .env ├── .eslintrc.json ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── .yarn └── releases │ └── yarn-4.1.0.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── index.html ├── package.json ├── public ├── curved-text-example.png ├── favicon.png ├── github.png ├── logo.png ├── logo192.png ├── logo512.png ├── manifest.json ├── npm.png ├── obss.png └── robots.txt ├── rollup.config.js ├── src ├── App.css ├── App.jsx ├── HeaderInfo.jsx ├── index.css ├── lib │ ├── ControlUtils.js │ ├── ReactCurvedText.jsx │ └── index.js └── main.jsx ├── vite.config.ts └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | rollup.config.js -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.1.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.yarn/releases/yarn-4.1.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | You are welcome to update this repository. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/package.json -------------------------------------------------------------------------------- /public/curved-text-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/curved-text-example.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/github.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/npm.png -------------------------------------------------------------------------------- /public/obss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/obss.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/public/robots.txt -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/HeaderInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/HeaderInfo.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/ControlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/lib/ControlUtils.js -------------------------------------------------------------------------------- /src/lib/ReactCurvedText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/lib/ReactCurvedText.jsx -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obss/react-curved-text/HEAD/yarn.lock --------------------------------------------------------------------------------