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.
17 lines
430 B
17 lines
430 B
import React from 'react';
|
|
import ContentLoader from 'react-content-loader';
|
|
import classNames from 'classnames';
|
|
|
|
export const SkeletonStock = () => (
|
|
<ContentLoader
|
|
className='card_stoke_skeleton'
|
|
speed={2}
|
|
width={245}
|
|
height={245}
|
|
viewBox="0 0 280 500"
|
|
backgroundColor="#f3f3f3"
|
|
foregroundColor="#ecebeb"
|
|
>
|
|
<rect x="0" y="0" rx="10" ry="10" width="245" height="245" />
|
|
</ContentLoader>
|
|
);
|
|
|