UNPKG

drip-table

Version:

A tiny and powerful enterprise-class solution for building tables.

14 lines (13 loc) 451 B
import './index.less'; import React from 'react'; export interface RowProps { style?: React.CSSProperties; className?: string; gutter?: [number, number]; justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between'; align?: 'top' | 'middle' | 'bottom'; wrap?: boolean; children?: React.ReactNode; } declare const Row: React.MemoExoticComponent<({ ...props }: RowProps) => React.JSX.Element>; export default Row;