import { FC } from 'react'; import { cn, resolveViewPort } from '@/utils/styling'; import { FlexItemProps } from '.'; export const FlexItem: FC = ({ className, alignSelf, shrink, children }) => (
{children}
);