├── .gitignore ├── .idea ├── .gitignore ├── RM10k.iml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── prettier.xml └── vcs.xml ├── README.md ├── package.json ├── public ├── favicon.ico ├── favicon.webp ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.jsx ├── assets │ ├── base.json │ └── test.json ├── components │ ├── AlertDialog.jsx │ ├── AnimationsOptions │ │ └── index.jsx │ ├── BoardingModal.jsx │ ├── Input.jsx │ ├── LayerOptions │ │ └── index.jsx │ ├── Layers.jsx │ ├── NumberInput.jsx │ ├── Slider.jsx │ └── Switch.jsx ├── hooks │ ├── useGetLottie.jsx │ └── useToast.jsx ├── index.js ├── parser.js ├── store.js └── theme.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/RM10k.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/.idea/RM10k.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/prettier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/.idea/prettier.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/public/favicon.webp -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/assets/base.json -------------------------------------------------------------------------------- /src/assets/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/assets/test.json -------------------------------------------------------------------------------- /src/components/AlertDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/AlertDialog.jsx -------------------------------------------------------------------------------- /src/components/AnimationsOptions/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/AnimationsOptions/index.jsx -------------------------------------------------------------------------------- /src/components/BoardingModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/BoardingModal.jsx -------------------------------------------------------------------------------- /src/components/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/Input.jsx -------------------------------------------------------------------------------- /src/components/LayerOptions/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/LayerOptions/index.jsx -------------------------------------------------------------------------------- /src/components/Layers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/Layers.jsx -------------------------------------------------------------------------------- /src/components/NumberInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/NumberInput.jsx -------------------------------------------------------------------------------- /src/components/Slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/Slider.jsx -------------------------------------------------------------------------------- /src/components/Switch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/components/Switch.jsx -------------------------------------------------------------------------------- /src/hooks/useGetLottie.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/hooks/useGetLottie.jsx -------------------------------------------------------------------------------- /src/hooks/useToast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/hooks/useToast.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/index.js -------------------------------------------------------------------------------- /src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/parser.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/store.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/src/theme.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoufswe/images-to-lottie-editor/HEAD/yarn.lock --------------------------------------------------------------------------------