Repository URL to install this package:
|
Version:
2.1.0 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const tslib_1 = require("tslib");
const react_1 = tslib_1.__importDefault(require("react"));
const styled_1 = require("./styled");
function defaultRenderHeaderItem(item, index) {
const {
label,
width,
align,
className
} = item;
const view = react_1.default.createElement(styled_1.StyledContainer, {
key: index,
className: className,
width: width,
align: align
}, label);
return view;
}
exports.defaultRenderHeaderItem = defaultRenderHeaderItem;