import * as React from "react"; import type { DistributiveOmit } from "../../utils/styled"; import { Flex, type FlexProps } from "../Flex"; /** * @deprecated Use `VStack` instead. */ export type StackProps = DistributiveOmit; /** * @deprecated Use `VStack` instead. */ export const Stack = React.forwardRef((props, ref) => { return ; }); export type VStackProps = DistributiveOmit; export const VStack = React.forwardRef((props, ref) => { return ; }); export type HStackProps = DistributiveOmit; export const HStack = React.forwardRef((props, ref) => { return ; });