UNPKG

@pandacss/studio

Version:

The automated token documentation for Panda CSS

14 lines (10 loc) 492 B
import { createElement, forwardRef } from 'react' import { splitProps } from '../helpers.mjs'; import { getLinkBoxStyle } from '../patterns/link-box.mjs'; import { panda } from './factory.mjs'; export const LinkBox = /* @__PURE__ */ forwardRef(function LinkBox(props, ref) { const [patternProps, restProps] = splitProps(props, []) const styleProps = getLinkBoxStyle(patternProps) const mergedProps = { ref, ...styleProps, ...restProps } return createElement(panda.div, mergedProps) })