UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

16 lines (15 loc) 879 B
import { type HTMLChakraProps, type SystemStyleObject } from "../../styled-system"; export interface GridBaseProps { templateColumns?: SystemStyleObject["gridTemplateColumns"] | undefined; autoFlow?: SystemStyleObject["gridAutoFlow"] | undefined; autoRows?: SystemStyleObject["gridAutoRows"] | undefined; autoColumns?: SystemStyleObject["gridAutoColumns"] | undefined; templateRows?: SystemStyleObject["gridTemplateRows"] | undefined; templateAreas?: SystemStyleObject["gridTemplateAreas"] | undefined; column?: SystemStyleObject["gridColumn"] | undefined; row?: SystemStyleObject["gridRow"] | undefined; inline?: boolean | undefined; } export interface GridProps extends HTMLChakraProps<"div", GridBaseProps> { } export declare const Grid: import("react").ForwardRefExoticComponent<GridProps & import("react").RefAttributes<HTMLDivElement>>;