import { BaseBox, ClickableCustom, Grid, TextCustom } from "@/components"; import { Href, router } from "expo-router"; export default function Investment_BoxDetailDocument({ title, leftIcon, href, }: { title: string; leftIcon?: React.ReactNode; href?: Href | string; }) { return ( <> router.push(href as any)}> {title || "-"} {leftIcon && {leftIcon}} ); }