diff options
| author | Haishan <[email protected]> | 2019-09-30 22:13:12 +0800 |
|---|---|---|
| committer | Haishan <[email protected]> | 2019-10-01 00:23:58 +0800 |
| commit | dec6c878840e8ba105c0f3bab26b0afb6a786656 (patch) | |
| tree | d5ba29769f857468ef114905883c7e3063bd182a /src/components/Loading2.js | |
| parent | f0c6d39ef29d01cddd769d539fb59639bfab43d5 (diff) | |
feat: new Loading component <Loading2 />
Diffstat (limited to 'src/components/Loading2.js')
| -rw-r--r-- | src/components/Loading2.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/Loading2.js b/src/components/Loading2.js new file mode 100644 index 0000000..ce049a8 --- /dev/null +++ b/src/components/Loading2.js @@ -0,0 +1,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; |
