index.tsx 310 Bytes
Newer Older
dechen lin's avatar
dechen lin committed
1
2
3
4
5
6
7
8
9
10
11
12
import styles from './loadingAnimation.module.scss';

interface ILoadingAnimationProps {
  className?: string;
}

const LoadingAnimation = (props: ILoadingAnimationProps) => {
  const { className } = props;
  return <div className={`${styles.loader} ${className}`}></div>;
};

export default LoadingAnimation;