/* ! * (c) Copyright 2025 Palantir Technologies Inc. All rights reserved. */ import { forwardRef } from "react"; import { DISPLAYNAME_PREFIX } from "../../common"; import { Box } from "../box/box"; import type { BoxProps } from "../box/boxProps"; export type FlexProps = Omit; /** * Flex component. */ export const Flex = forwardRef(function Flex(props, ref) { return ; }); Flex.displayName = `${DISPLAYNAME_PREFIX}.Flex`;