import { Grid } from "@/components"; import { StyleProp, ViewStyle } from "react-native"; export const GridViewCustomSpan = ({ span1, span2, span3, component1, component2, component3, style1, style2, style3, }: { span1?: number; span2?: number; span3?: number; component1: React.ReactNode; component2: React.ReactNode; component3: React.ReactNode; style1?: StyleProp; style2?: StyleProp; style3?: StyleProp; }) => { return ( {component1} {component2} {component3} ); };