UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

17 lines (16 loc) 526 B
import { ViewProps } from "@vnxjs/components/types/View"; import { CSSProperties, ReactNode } from "react"; import { GridDirection } from "./grid.shared"; export interface GridProps extends ViewProps { style?: CSSProperties; columns?: number; gutter?: number | string; bordered?: boolean; centered?: boolean; clickable?: boolean; square?: boolean; direction?: GridDirection; children?: ReactNode; } declare function Grid(props: GridProps): JSX.Element; export default Grid;