UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

15 lines (12 loc) 356 B
"use strict"; "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 }); } ); VStack.displayName = "VStack"; export { VStack };