UNPKG

@lobehub/ui

Version:

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

14 lines (13 loc) 369 B
import { FlexboxProps } from "../Flex/type.mjs"; import "../Flex/index.mjs"; import { Ref } from "react"; //#region src/Grid/type.d.ts interface GridProps extends Omit<FlexboxProps, 'gap'> { gap?: string | number; maxItemWidth?: string | number; ref?: Ref<HTMLDivElement>; rows?: number; } //#endregion export { GridProps }; //# sourceMappingURL=type.d.mts.map