light-layout-component
Version:
easy and useful layout component
13 lines (12 loc) • 403 B
TypeScript
import { PropsWithChildren } from "react";
import { NumberUnitType } from "../../types";
interface GridCssProps {
rows: string;
columns: string;
gap?: NumberUnitType;
}
interface GridProps extends GridCssProps {
isAutoFill?: boolean;
}
declare const Grid: ({ columns, isAutoFill, ...props }: PropsWithChildren<GridProps>) => import("react/jsx-runtime").JSX.Element;
export default Grid;