@cerberus-design/styled-system
Version:
Cerberus Design System Panda-CSS styled-system.
14 lines (10 loc) • 534 B
JavaScript
import { createElement, forwardRef } from 'react'
import { splitProps } from '../helpers.mjs';
import { getGridStyle } from '../patterns/grid.mjs';
import { cerberus } from './factory.mjs';
export const Grid = /* @__PURE__ */ forwardRef(function Grid(props, ref) {
const [patternProps, restProps] = splitProps(props, ["gap","columnGap","rowGap","columns","minChildWidth"])
const styleProps = getGridStyle(patternProps)
const mergedProps = { ref, ...styleProps, ...restProps }
return createElement(cerberus.div, mergedProps)
})