import { View, Text } from "react-native"; import tw from "twrnc"; interface CardProps { label?: string; children: React.ReactNode; } export default function Card({ label, children }: CardProps) { return ( <> {label && {label}} {children} ); }