import { __ } from "@wordpress/i18n"; function TransactionDescription({ amount = 0 }: { amount: number }) { return (
{__("Transaction with")} {" "} {__(amount.toString())} {__("USDC")} {__("is made successfully")}
); } export default TransactionDescription;