UNPKG

@cerberus-design/styled-system

Version:

Cerberus Design System Panda-CSS styled-system.

14 lines (10 loc) 485 B
import { createElement, forwardRef } from 'react' import { splitProps } from '../helpers.mjs'; import { getCqStyle } from '../patterns/cq.mjs'; import { cerberus } from './factory.mjs'; export const Cq = /* @__PURE__ */ forwardRef(function Cq(props, ref) { const [patternProps, restProps] = splitProps(props, ["name","type"]) const styleProps = getCqStyle(patternProps) const mergedProps = { ref, ...styleProps, ...restProps } return createElement(cerberus.div, mergedProps) })