robust-react-ui
Version:
A React component library, built with a focus on accessibility, extensibility and reusability.
18 lines (17 loc) • 400 B
TypeScript
import { ReactNode } from 'react';
export interface IRowProps {
children: ReactNode;
/**
* Wrap columns when they overflow.
* @default true
*/
wrap?: boolean;
/**
* @default stretch
*/
alignY?: 'top' | 'bottom' | 'middle' | 'stretch';
/**
* @default left
*/
alignX?: 'left' | 'right' | 'even-between' | 'even-around';
}