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