aboutsummaryrefslogtreecommitdiff
path: root/src/web/components/loading/Loading.jsx
blob: df2caf47d753e3eba9199ca3814275ae16a663ba (plain)
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} />
    );
}