import { FC } from 'react'; import BaseContainer from '@/components/ui/Container'; import { cn, resolveViewPort } from '@/utils/styling'; import { FlexProps } from '.'; export const Flex: FC = ({ className, wrapperClassName, direction, justifyContent, gap, alignItems, backgroundColor, spacing, border, fluidContent, height, children, wrap, }) => (
{children}
);