antd-meck
Version:
An enterprise-class UI design language and React-based implementation
35 lines (34 loc) • 815 B
TypeScript
/// <reference types="react" />
import * as 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, {
screens: {};
}> {
static defaultProps: {
gutter: number;
};
static propTypes: {
type: any;
align: any;
justify: any;
className: any;
children: any;
gutter: any;
prefixCls: any;
};
state: {
screens: {};
};
componentDidMount(): void;
componentWillUnmount(): void;
getGutter(): any;
render(): JSX.Element;
}