import React from "react"; import { Text, View } from "react-native"; import Icon from "./Icon"; import { ProfileItemT } from "../types"; import styles, { DARK_GRAY, WHITE } from "../assets/styles"; const ProfileItem = ({ age, info1, info2, info3, info4, location, matches, name, }: ProfileItemT) => ( {matches}% Match! {name} {age} - {location} {info1} {info2} {info3} {info4} ); export default ProfileItem;