17 lines
289 B
JavaScript
17 lines
289 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { WC_BLOCKS_ASSET_URL } from '@woocommerce/block-settings';
|
||
|
|
||
|
export const cartBlockPreview = (
|
||
|
<img
|
||
|
src={ WC_BLOCKS_ASSET_URL + 'img/cart-preview.svg' }
|
||
|
alt="Cart Preview"
|
||
|
width="230"
|
||
|
height="250"
|
||
|
style={ {
|
||
|
width: '100%',
|
||
|
} }
|
||
|
/>
|
||
|
);
|