import React from "react"
import ContentLoader from "react-content-loader"
const MyLoader = (props) => (
<ContentLoader
key={index}
speed={2}
width={192}
height={268}
viewBox="0 0 192 268"
backgroundColor="#e8e8e8"
foregroundColor="#f0f0f0"
{...props}>
<rect x="-4" y="-1" rx="5" ry="5" width="198" height="198" />
<rect x="6" y="199" rx="5" ry="5" width="146" height="18" />
<rect x="6" y="245" rx="5" ry="5" width="87" height="18" />
<rect x="5" y="220" rx="5" ry="5" width="126" height="18" />
<circle cx="157" cy="250" r="15" />
</ContentLoader>
)
export default MyLoader