import { Grid } from "@/components"; export const GridSpan_NewComponent = ({ text1, text2, text3, text4, span1, span2, }: { text1: React.ReactNode; text2: React.ReactNode; text3?: React.ReactNode; text4?: React.ReactNode; span1?: number; span2?: number; }) => { return ( {text1} {text2} {text3 && ( {text3} )} {text4 && ( {text4} )} ); };