UNPKG

reflexy

Version:

Flexbox layout react components

3 lines (2 loc) 418 B
import type { FlexProps, OverflowProps } from './types'; export default function props2className(props: Pick<FlexProps, 'column' | 'row' | 'reverse' | 'grow' | 'shrink' | 'wrap' | 'alignItems' | 'justifyContent' | 'hfill' | 'vfill' | 'alignContent' | 'alignSelf' | 'flex' | 'inline' | 'basis' | 'shrinkWidth' | 'shrinkHeight'> & Pick<OverflowProps, 'overflowX' | 'overflowY' | 'scrollableX' | 'scrollableY'>): string;