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

import s0 from './Loading2.module.scss';
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;