import React from "react"; import styles from "./AnimatedSVG.module.css"; const AnimatedSVG = (): React.ReactNode => { const stroke = "#fff"; return (
{/* width, height and viewBox are necessary */}
); }; export default AnimatedSVG;