import styles from "./Path.module.css"; import React, { useRef } from "react"; const Animation = ({ sizePercentage = 100 }) => { const width = (1253 * sizePercentage) / 100; const height = (136 * sizePercentage) / 100; // 11 path-hoz refs const pathRefs = Array.from({ length: 11 }, () => useRef(null)); return (
{/* prettier-ignore */}
); }; export default Animation;