/**
* Flex (web). Stack with `direction="row"` baked in.
*
* ...
*
* Trivial wrapper, but I find myself reaching for `` constantly
* and `` reads worse.
*/
import { forwardRef, type ForwardedRef } from "react";
import { Stack, type StackProps } from "../stack";
export interface FlexProps extends Omit {
reverse?: boolean;
}
export const Flex = forwardRef(function Flex(
{ reverse, ...rest },
ref,
) {
return ;
});