27 lines
671 B
JavaScript
27 lines
671 B
JavaScript
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import './style.scss';
|
||
|
|
||
|
const RecommendedExtensionsPlaceholder = () => {
|
||
|
const classNameBase =
|
||
|
'is-loading woocommerce-marketing-recommended-extensions-item';
|
||
|
|
||
|
return (
|
||
|
<div className={ classNameBase } aria-hidden="true">
|
||
|
<div className="woocommerce-admin-marketing-product-icon is-placeholder"></div>
|
||
|
|
||
|
<div className={ `${ classNameBase }__text` }>
|
||
|
<h4 className="is-placeholder" aria-hidden="true"></h4>
|
||
|
<p>
|
||
|
<span className="is-placeholder" />
|
||
|
<span className="is-placeholder" />
|
||
|
<span className="is-placeholder" />
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default RecommendedExtensionsPlaceholder;
|