{"version":3,"file":"lottieLoading-e7210818.js","sources":["../../src/pages/lottieLoading.tsx"],"sourcesContent":["import styles from \"@/assets/scss/LottieLoading.module.scss\";\nimport { useEffect } from \"react\";\n\nconst LottieLoading = () => {\n useEffect(() => {\n let animation: any;\n if (window.lottie && window.lottie.loadAnimation) {\n animation = window.lottie.loadAnimation({\n container: document.getElementById(\"lottie_element\"), // Required\n path: \"/lottieLoading.json\", // Required\n renderer: \"svg\", // Required\n loop: true, // Optional\n autoplay: true, // Optional\n name: \"PayPing Dot\", // Name for future reference. Optional.\n });\n }\n return () => {\n if (animation?.destroy) animation.destroy();\n };\n }, []);\n\n return (\n