import { clx } from "@medusajs/ui" import { getStylizedAmount } from "../../../../../lib/money-amount-helpers" import { PlaceholderCell } from "../placeholder-cell" type MoneyAmountCellProps = { currencyCode: string amount?: number | null align?: "left" | "right" className?: string } export const MoneyAmountCell = ({ currencyCode, amount, align = "left", className, }: MoneyAmountCellProps) => { if (typeof amount === "undefined" || amount === null) { return } const formatted = getStylizedAmount(amount, currencyCode) return (
{formatted}
) }