block.json
1 year ago
controller.php
1 year ago
index.asset.php
6 months ago
index.js
6 months ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
5 months ago
view.php
16 lines
| 1 | <div |
| 2 | <?php echo wp_kses_data( get_block_wrapper_attributes() ); ?> |
| 3 | data-wp-bind--aria-label="surecart/checkout::state.removeItemAriaLabel" |
| 4 | data-wp-on--click="surecart/checkout::actions.removeLineItem" |
| 5 | data-wp-on--keydown="surecart/checkout::actions.removeLineItem" |
| 6 | role="button" |
| 7 | tabindex="0" |
| 8 | > |
| 9 | <?php if ( 'none' !== $attributes['icon'] ) : ?> |
| 10 | <?php echo wp_kses( SureCart::svg()->get( $attributes['icon'], [ 'class' => 'wp-block-surecart-cart-line-item-remove__icon' ] ), sc_allowed_svg_html() ); ?> |
| 11 | <?php endif; ?> |
| 12 | <span class="<?php echo empty( $attributes['show_label'] ) ? 'sc-screen-reader-text' : 'wp-block-surecart-cart-line-item-remove__label'; ?>"> |
| 13 | <?php echo wp_kses_post( $attributes['label'] ); ?> |
| 14 | </span> |
| 15 | </div> |
| 16 |