import { BoxBaseProps } from '../base/boxBase'; /** * Props for the {@link Grid} component. * * Extends {@link BoxBaseProps} with flex-related props removed. * Intended for CSS Grid–only layouts. * * @category Grid */ export type GridProps = Omit; /** * Grid layout container. * * Explicit CSS Grid wrapper used for two-dimensional layouts. * Use this component when working with grid semantics such as * columns, rows, gaps, and auto-placement flow. * * Built on top of {@link BoxBase} and exposes only grid-relevant layout props. * * @category Grid * @function * @param props - Grid layout props inherited from {@link BoxBase}. * * @example * * * * * * * @example * *
* *