import { PropsWithChildren, ReactNode } from "react"; import { View, ViewProps } from "react-native"; import { Text } from "./common/Text"; interface Props extends ViewProps { title?: string | null | undefined; subTitle?: string | null | undefined; children?: ReactNode; iconAfter?: ReactNode; } export const ListItem: React.FC> = ({ title, subTitle, iconAfter, children, ...props }) => { return ( {title} {subTitle && ( {subTitle} )} {iconAfter} ); };