// // Copyright 2026 DXOS.org // import React from 'react'; import { mx } from '@dxos/ui-theme'; import { composable, composableProps } from '../../util'; export type GridProps = { cols?: number; rows?: number; grow?: boolean }; export const Grid = composable( ({ children, style, role, cols, rows, grow = true, ...props }, forwardedRef) => { const { className, ...rest } = composableProps(props); return (
{children}
); }, );