blob: d5f3d5615946241adb718c9df3c1ed9458fbd075 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import React from 'react';
import ContentLoader from "react-content-loader";
export default function Spinner(props) {
return (
<ContentLoader
height={160}
speed={2}
primaryColor="#f8f8f8"
secondaryColor="#ecebeb"
className="msg-cont"
{...props}
>
<rect x="56" y="6" rx="0" ry="0" width="117" height="6.4" />
<rect x="56" y="20" rx="0" ry="0" width="85" height="6.4" />
<rect x="0" y="60" rx="0" ry="0" width="340" height="6.4" />
<rect x="0" y="78" rx="0" ry="0" width="340" height="6.4" />
<rect x="0" y="96" rx="0" ry="0" width="201" height="6.4" />
<rect x="0" y="0" rx="0" ry="0" width="48" height="48" />
<rect x="0" y="120" rx="0" ry="0" width="340" height="1" />
</ContentLoader>
)
}
|