UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

19 lines (18 loc) 632 B
import { SpaceAllProps } from '../space/Space'; export type Columns = number; export type Media = { small?: Columns | false; medium?: Columns | false; large?: Columns | false; }; export type BasicProps = { columns?: Media | Columns; rowGap?: 'x-small' | 'small' | 'medium' | 'large' | boolean; columnGap?: 'x-small' | 'small' | 'medium' | 'large' | boolean; }; export type AllProps = BasicProps & SpaceAllProps; declare function GridContainer(props: AllProps): import("react/jsx-runtime").JSX.Element; declare namespace GridContainer { var _supportsSpacingProps: boolean; } export default GridContainer;