UNPKG

@creative-kit/react

Version:

React component library

8 lines (5 loc) 245 B
import { jsx } from 'react/jsx-runtime'; import { forwardRef } from 'react'; import { Flex } from '../Flex/index.js'; const HStack=forwardRef(function HStack(props,ref){return jsx(Flex,{ref:ref,direction:"row",...props})}); export { HStack };