% if view == "mobile" %>
<% additional_classes = "d-lg-none" %>
<% elsif view == "desktop" %>
<% additional_classes = "d-none d-lg-table-cell" %>
<% end %>
<%= line_item.single_money.to_html %>
<% if view == "desktop" %>
<%= line_item.display_amount.to_html unless line_item.quantity.nil? %>
<% end %>
<%= link_to '#', class: 'delete', id: "delete_#{dom_id(line_item)}", data: { turbolinks: false, id: dom_id(line_item), variant_sku: line_item.sku, variant_name: line_item.name, variant_price: line_item.price, variant_options: line_item.options_text }, aria: { label: Spree.t('cart_page.remove_from_cart') } do %>
<%= icon(name: 'garbage',
classes: 'shopping-cart-item-delete-icon',
width: 18.9,
height: 17) %>
<% end %>