import { LucideChevronRight, LucideSend } from "lucide-react-native"; import React from "react"; import { View, Text, Image } from "react-native"; import { useTranslation } from "react-i18next"; import { Button } from "~/components/ui/button"; export default function RecipCard() { const { t } = useTranslation(); return ( {t("components.recipcard.name")} {t("components.recipcard.accountNumber")} ); }