cosmo-ui
Version:
Common React components
21 lines • 610 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var constants_1 = require("../constants");
var flex_1 = require("./flex");
var Row = (function (_super) {
tslib_1.__extends(Row, _super);
function Row() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.shortcutProps = constants_1.ROW_SHORTCUT_PROPS;
return _this;
}
return Row;
}(flex_1.Flex));
Row.defaultProps = {
row: 'xs',
align: 'center',
justify: 'flex-start',
};
exports.Row = Row;
//# sourceMappingURL=row.js.map