import Grid from "../Grid/GridCustom"; export default function GridComponentView({ leftIcon, children, rightIcon, }: { leftIcon?: React.ReactNode; children: React.ReactNode; rightIcon?: React.ReactNode; }) { return ( {leftIcon} {children} {rightIcon} ); }