1 2 3 4 5 6 7 8 9 10 11 12 13
import React from "react"; import styles from "./Loading.css"; import half_circle from "assets/svg/half_circle.svg"; export default function Loading({className, ...others}) { return ( <img src={half_circle} className={styles.loading + (className ? " " + className : "")} {...others} /> ); }