diff --git a/src/components/TransactionInformationsItem.tsx b/src/components/TransactionInformationsItem.tsx new file mode 100644 index 0000000..8657439 --- /dev/null +++ b/src/components/TransactionInformationsItem.tsx @@ -0,0 +1,49 @@ +import type { PaymentCode } from "@/utils/requests/Types"; +import { images } from "@styles/Commons"; +import { Image } from "react-native"; +import Box from "./bases/Box"; +import Text from "./bases/Text"; + +interface Props { + paymentType: PaymentCode; + reference: string; + date: string; + amount: number; + status: "success" | "pending" | "failed" | "canceled"; +} + +const TransactionInformationsItem = () => { + return ( + + + + + + Reference + 12 Janvier 2099 + + + + 7,000,000 + + + + ); +}; + +export default TransactionInformationsItem;