summaryrefslogtreecommitdiff
path: root/src/components/Loading2.js
blob: ce049a894c4892da6489605e059561ae444b70f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';

import SvgYacd from './SvgYacd';

import s0 from './Loading2.module.css';

function Loading() {
  return (
    <div className={s0.lo}>
      <SvgYacd width={280} height={280} animate c0="transparent" c1="#646464" />
    </div>
  );
}

export default Loading;