import { AvatarUsernameAndOtherComponent, BoxWithHeaderSection, DummyLandscapeImage, Grid, Spacing, StackCustom, TextCustom } from "@/components"; import { View } from "react-native"; export default function Invesment_BoxDetailDataSection({ title, author, imageId, data, bottomSection, }: { title?: string; author?: any; imageId?: string; data: any; bottomSection?: React.ReactNode; }) { return ( <> {author && ( )} {title || "Judul Investasi"} {data?.map((item: any, index: any) => ( {item.label} {item.value} ))} {bottomSection} ); }