import type { FC, ReactNode } from 'react'; import styles from './FlexRow.module.css'; import { cx } from '../../lib'; interface FlexRowProps { align?: 'left' | 'right' | 'center' | 'space-between', wrap?: boolean, inline?: boolean, children: ReactNode, } export const FlexRow: FC = ({ children, align = 'left', wrap, inline }) => { return (
{children}
); };