import React from 'react'; import { formatCurrency } from '@/packages/shared/src/utils'; import { StoreCartLineItem } from '@medusajs/types'; import { useTranslation } from 'react-i18next'; import { Table, TableBody } from '@kit/ui/shadcn/table'; import MobileTableRow from './mobile-table-row'; const MobileCartItems = ({ item, currencyCode, productColumnLabelKey, }: { item: StoreCartLineItem; currencyCode: string; productColumnLabelKey: string; }) => { const { i18n: { language }, } = useTranslation(); return (