You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
556 B
18 lines
556 B
import React from 'react';
|
|
import ContentLoader from 'react-content-loader';
|
|
import classNames from 'classnames';
|
|
|
|
export const PizzaSkeleton = () => (
|
|
<ContentLoader
|
|
className={classNames("vendor-item product_card")}
|
|
speed={2}
|
|
width={280}
|
|
height={500}
|
|
viewBox="0 0 280 500"
|
|
backgroundColor="#f3f3f3"
|
|
foregroundColor="#ecebeb">
|
|
<circle cx="134" cy="136" r="125" />
|
|
<rect x="0" y="279" rx="10" ry="10" width="280" height="23" />
|
|
<rect x="0" y="326" rx="10" ry="10" width="280" height="100" />
|
|
</ContentLoader>
|
|
);
|
|
|