import { FlexProps as ChakraFlexProps } from '@chakra-ui/react/flex'; /** * Props for the Flex component * * Inherits all props from Chakra UI's Flex component, including: * - Layout props: direction, wrap, align, justify, gap * - Style props: padding, margin, backgroundColor, etc. * - Responsive props: All props support responsive objects * * @example * ```tsx * * Item 1 * Item 2 * * ``` */ export type FlexProps = ChakraFlexProps & { /** * Ref forwarding to the root flex element */ ref?: React.Ref; };