import Area from '@components/common/Area.js'; import { Button } from '@components/common/ui/Button.js'; import { _ } from '@evershop/evershop/lib/locale/translate/_'; import React from 'react'; export function DefaultMiniCartDropdownSummary({ total, cartUrl, checkoutUrl, totalQty }: { total: string; cartUrl: string; checkoutUrl: string; totalQty: number; }) { return ( <>
{_('Subtotal')}: {total || '—'}
); }