test-nut-ui
Version:
<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>
14 lines (13 loc) • 503 B
TypeScript
import React, { FunctionComponent } from 'react';
import { BasicComponent } from '../../utils/typings';
export type RowEventType = 'row' | 'col';
export interface RowProps extends BasicComponent {
type: string;
justify: string;
align: string;
wrap: string;
gutter: string | number;
space: string | number;
onClick: (e: any, type: RowEventType) => void;
}
export declare const Row: FunctionComponent<Partial<RowProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onClick'>>;