import { View, ScrollView, Pressable } from "react-native"; import { useSirouRouter, useSirouParams } from "@sirou/react-native"; import { AppRoutes } from "@/lib/routes"; import { Stack } from "expo-router"; import { Text } from "@/components/ui/text"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { ArrowLeft, Wallet, Link2, Clock } from "@/lib/icons"; import { ScreenWrapper } from "@/components/ScreenWrapper"; export default function PaymentDetailScreen() { const nav = useSirouRouter(); const { id } = useSirouParams(); return ( nav.back()} className="h-10 w-10 rounded-[10px] bg-card items-center justify-center border border-border" > Payment Match Pending Match Received Amount $2,000.00 TXN-9982734 Telebirr SMS {/* Transaction Details */} Transaction Details Received On Sep 11, 2022 ยท 14:30 Status Awaiting Link {/* SMS Message */} Original SMS "Payment received from Elnatan Jansen for order #2322 via Telebirr. Amount: $2,000. Ref: B88-22X7." {/* Action */} ); }