import React from "react"; import { View, Text } from "react-native"; import { ArrowLeftIcon } from "lucide-react-native"; import { Button } from "~/components/ui/button"; interface BackCardProps { text: string; } export default function BackCard({ text }: BackCardProps) { return ( {text} ); }