antd
Version:
An enterprise-class UI design language and React-based implementation
27 lines (26 loc) • 664 B
TypeScript
/// <reference types="react" />
import React from 'react';
export interface RowProps {
className?: string;
gutter?: number;
type?: 'flex';
align?: 'top' | 'middle' | 'bottom';
justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between';
style?: React.CSSProperties;
prefixCls?: string;
}
export default class Row extends React.Component<RowProps, {}> {
static defaultProps: {
gutter: number;
};
static propTypes: {
type: any;
align: any;
justify: any;
className: any;
children: any;
gutter: any;
prefixCls: any;
};
render(): JSX.Element;
}