first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { __assign, __extends } from "tslib";
import * as React from 'react';
import { getNativeProps, divProperties, initializeComponentRef, warnDeprecations } from '@fluentui/utilities';
var COMPONENT_NAME = 'PivotItem';
var PivotItem = /** @class */ (function (_super) {
__extends(PivotItem, _super);
function PivotItem(props) {
var _this = _super.call(this, props) || this;
initializeComponentRef(_this);
warnDeprecations(COMPONENT_NAME, props, {
linkText: 'headerText',
});
return _this;
}
PivotItem.prototype.render = function () {
return React.createElement("div", __assign({}, getNativeProps(this.props, divProperties)), this.props.children);
};
return PivotItem;
}(React.Component));
export { PivotItem };
//# sourceMappingURL=PivotItem.js.map