UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

9 lines (8 loc) 266 B
import type { Ref } from 'react'; import type { FlexboxProps } from 'react-layout-kit'; export interface GridProps extends Omit<FlexboxProps, 'gap'> { gap?: string | number; maxItemWidth?: string | number; ref?: Ref<HTMLDivElement>; rows?: number; }