File size: 719 Bytes
1e92f2d |
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'
const ListSkeleton = props => (
<ContentLoader
width={'100%'}
height={575}
viewBox="0 0 800 575"
backgroundColor="#f3f3f3"
foregroundColor="#ecebeb"
{...props}
>
<rect x="12" y="58" rx="4" ry="2" width="211" height="211" />
<rect x="240" y="57" rx="4" ry="2" width="211" height="211" />
<rect x="467" y="56" rx="4" ry="2" width="211" height="211" />
<rect x="12" y="283" rx="4" ry="2" width="211" height="211" />
<rect x="240" y="281" rx="4" ry="2" width="211" height="211" />
<rect x="468" y="279" rx="4" ry="2" width="211" height="211" />
</ContentLoader>
)
export default ListSkeleton |