You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
637 B

import React from 'react';
const Row = React.createClass({
9 years ago
propTypes: {
type: React.PropTypes.string,
align: React.PropTypes.string,
justify: React.PropTypes.string,
children: React.PropTypes.node,
},
render() {
const { type, justify, align } = this.props;
let className = 'row';
if (type || justify || align) {
className += ` row-flex`;
}
if (justify) {
className += ` row-flex-${justify}`;
}
if (align) {
className += ` row-flex-${align}`;
}
9 years ago
return <div {...this.props} className={className}>{ this.props.children }</div>;
},
});
9 years ago
export default Row;