UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

16 lines (15 loc) 694 B
import type { SpaceAllProps } from '../space/Space'; export type GridContainerColumns = number; export type GridContainerMedia = { small?: GridContainerColumns | false; medium?: GridContainerColumns | false; large?: GridContainerColumns | false; }; export type GridContainerProps = { columns?: GridContainerMedia | GridContainerColumns; rowGap?: 'x-small' | 'small' | 'medium' | 'large' | boolean; columnGap?: 'x-small' | 'small' | 'medium' | 'large' | boolean; }; export type GridContainerAllProps = GridContainerProps & SpaceAllProps; declare function GridContainer(props: GridContainerAllProps): import("react/jsx-runtime").JSX.Element; export default GridContainer;