├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmrc ├── .prettierrc.js ├── LICENSE ├── README.md ├── example ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── LottieBasic.tsx │ ├── LottieHoverable.tsx │ ├── LottieQueue.tsx │ ├── LottieRemote.tsx │ ├── index.css │ ├── index.tsx │ ├── lotties │ │ ├── 11562-van-icon.json │ │ ├── 11599-download.json │ │ ├── 11643-tesla-cybertruck.json │ │ ├── 11705-lightning-vfx.json │ │ ├── 142-loading-animation.json │ │ ├── 28-loading.json │ │ ├── 3520-light-bulb.json │ │ ├── 63-hamburger-arrow-transition.json │ │ └── spinner-animation.json │ └── react-app-env.d.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── rollup.config.js ├── src ├── components │ └── Lottie │ │ ├── index.tsx │ │ └── interface.ts └── index.ts ├── test └── test.ts ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | reactComponentLib 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/README.md -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/.eslintrc.js -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/README.md -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/src/LottieBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/LottieBasic.tsx -------------------------------------------------------------------------------- /example/src/LottieHoverable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/LottieHoverable.tsx -------------------------------------------------------------------------------- /example/src/LottieQueue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/LottieQueue.tsx -------------------------------------------------------------------------------- /example/src/LottieRemote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/LottieRemote.tsx -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/lotties/11562-van-icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/11562-van-icon.json -------------------------------------------------------------------------------- /example/src/lotties/11599-download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/11599-download.json -------------------------------------------------------------------------------- /example/src/lotties/11643-tesla-cybertruck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/11643-tesla-cybertruck.json -------------------------------------------------------------------------------- /example/src/lotties/11705-lightning-vfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/11705-lightning-vfx.json -------------------------------------------------------------------------------- /example/src/lotties/142-loading-animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/142-loading-animation.json -------------------------------------------------------------------------------- /example/src/lotties/28-loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/28-loading.json -------------------------------------------------------------------------------- /example/src/lotties/3520-light-bulb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/3520-light-bulb.json -------------------------------------------------------------------------------- /example/src/lotties/63-hamburger-arrow-transition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/63-hamburger-arrow-transition.json -------------------------------------------------------------------------------- /example/src/lotties/spinner-animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/src/lotties/spinner-animation.json -------------------------------------------------------------------------------- /example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/components/Lottie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/src/components/Lottie/index.tsx -------------------------------------------------------------------------------- /src/components/Lottie/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/src/components/Lottie/interface.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crello/react-lottie/HEAD/yarn.lock --------------------------------------------------------------------------------