File size: 1,626 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
"use client"
import { forwardRef } from "react"
import {
type HTMLChakraProps,
type SystemStyleObject,
chakra,
} from "../../styled-system"
export interface GridOptions {
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 Omit<HTMLChakraProps<"div">, keyof GridOptions>,
GridOptions {}
export const Grid = forwardRef<HTMLDivElement, GridProps>(
function Grid(props, ref) {
const {
templateAreas,
column,
row,
autoFlow,
autoRows,
templateRows,
autoColumns,
templateColumns,
inline,
...rest
} = props
return (
<chakra.div
{...rest}
ref={ref}
css={[
{
display: inline ? "inline-grid" : "grid",
gridTemplateAreas: templateAreas,
gridAutoColumns: autoColumns,
gridColumn: column,
gridRow: row,
gridAutoFlow: autoFlow,
gridAutoRows: autoRows,
gridTemplateRows: templateRows,
gridTemplateColumns: templateColumns,
},
props.css,
]}
/>
)
},
)
|