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

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

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

export default Loading;