import React from "react"; import { Image, Pressable, Text, View } from "react-native"; import { responsiveHeight } from "../actions/responsiveSizes"; import { Fonts, Palette, Style } from "../styles"; import { icons } from "../assets"; import IconContainer from "./IconContainer"; const ItemRowList = ({ title, action, icon = null, textStyle = {}, addMarginTopFromPrevious = false, containerStyle = {}, separatorPosition = "bottom", }) => { return ( {separatorPosition === "top" && ( )} {icon && } {title} {separatorPosition === "bottom" && ( )} ); }; export default ItemRowList;