import Styles from "@/constants/Styles"; import { Pressable, Text, View } from "react-native"; type Props = { title: string subtitle?: string icon: React.ReactNode desc?: string onPress?: () => void } export default function BorderBottomItem({ title, subtitle, icon, desc, onPress }: Props) { return ( {icon} {title} {subtitle} 3 Feb 2025 {desc && {desc}} ) }