UNPKG

@gechiui/components

Version:
26 lines 634 B
export default ConnectedVStack; /** * `VStack` (or Vertical Stack) is a layout component that arranges child elements in a vertical line. * * `VStack` can render anything inside. * * @example * ```jsx * import { * __experimentalText as Text, * __experimentalVStack as VStack, * } from `@gechiui/components`; * * function Example() { * return ( * <VStack> * <Text>Code</Text> * <Text>is</Text> * <Text>Poetry</Text> * </VStack> * ); * } * ``` */ declare const ConnectedVStack: import("../ui/context").GeChiUIComponent<"div", import("./types").Props, true>; //# sourceMappingURL=component.d.ts.map