import type { PressableProps } from 'react-native'; import { Pressable, Text, View } from 'react-native'; export const ActionRow = ({ detail, label, ...props }: PressableProps & { detail?: string; label: string; }) => ( {label} {detail ? ( {detail} ) : null} );