office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
26 lines • 1.31 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { BaseComponent, classNamesFunction } from '../../Utilities';
var getClassNames = classNamesFunction();
var DialogFooterBase = /** @class */ (function (_super) {
tslib_1.__extends(DialogFooterBase, _super);
function DialogFooterBase() {
return _super !== null && _super.apply(this, arguments) || this;
}
DialogFooterBase.prototype.render = function () {
var _a = this.props, className = _a.className, styles = _a.styles, theme = _a.theme;
this._classNames = getClassNames(styles, {
theme: theme,
className: className
});
return (React.createElement("div", { className: this._classNames.actions },
React.createElement("div", { className: this._classNames.actionsRight }, this._renderChildrenAsActions())));
};
DialogFooterBase.prototype._renderChildrenAsActions = function () {
var _this = this;
return React.Children.map(this.props.children, function (child) { return (child ? React.createElement("span", { className: _this._classNames.action }, child) : null); });
};
return DialogFooterBase;
}(BaseComponent));
export { DialogFooterBase };
//# sourceMappingURL=DialogFooter.base.js.map