@shopgate/engage
Version:
Shopgate's ENGAGE library.
4 lines • 702 B
JavaScript
import React from'react';import CardListItem from'@shopgate/pwa-ui-shared/CardList/components/Item';import{LocalShippingIcon}from"../../../components";import{i18n}from"../../../core";import{address,shippingIcon,shippingTitle}from"./CartItemGroup.style";/**
* Renders the cart item group.
* @returns {JSX.Element}
*/export var CartItemGroupShipping=function CartItemGroupShipping(){return React.createElement(CardListItem,null,React.createElement("div",{className:address},React.createElement("div",{className:shippingIcon},React.createElement(LocalShippingIcon,null)),React.createElement("div",null,React.createElement("div",{className:shippingTitle},i18n.text('locations.method.direct_ship')))));};