2020-04-08 15:03:39 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { WC_BLOCKS_ASSET_URL } from '@woocommerce/block-settings';
|
|
|
|
|
|
|
|
export const checkoutBlockPreview = (
|
|
|
|
<img
|
|
|
|
src={ WC_BLOCKS_ASSET_URL + 'img/checkout-preview.svg' }
|
2020-05-28 11:41:10 +00:00
|
|
|
alt=""
|
2020-04-08 15:03:39 +00:00
|
|
|
width="230"
|
|
|
|
height="250"
|
|
|
|
style={ {
|
|
|
|
width: '100%',
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
);
|