@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
14 lines (11 loc) • 322 B
JavaScript
"use client";
import { jsx } from 'react/jsx-runtime';
import { forwardRef } from 'react';
import { Stack } from './stack.js';
const HStack = forwardRef(
function HStack2(props, ref) {
return /* @__PURE__ */ jsx(Stack, { align: "center", ...props, direction: "row", ref });
}
);
export { HStack };
;