UNPKG

zent

Version:

一套前端设计语言和基于React的实现

16 lines (15 loc) 468 B
import { Component } from 'react'; export interface ILayoutRowProps { className?: string; justify?: 'start' | 'center' | 'end' | 'space-around' | 'space-between' | 'space-evenly'; align?: 'start' | 'center' | 'end'; style?: React.CSSProperties; } export declare class LayoutRow extends Component<ILayoutRowProps> { static defaultProps: { justify: string; align: string; }; render(): JSX.Element; } export default LayoutRow;