antd-omi-icons
Version:
Ant Design Icons for Omi
88 lines (87 loc) • 3.96 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import { Component as OmiComponent, h, tag } from 'omi';
import { rmIEFP } from 'omi-tools';
import './IconBase';
import { getTwoToneColor, setTwoToneColor } from './twoTonePrimaryColor';
import { normalizeTwoToneColors, iconStyles } from '../utils';
// Initial setting
setTwoToneColor('#1890ff');
var AntdIcon = /** @class */ (function (_super) {
__extends(AntdIcon, _super);
function AntdIcon() {
return _super !== null && _super.apply(this, arguments) || this;
}
AntdIcon.prototype.render = function (props) {
var icon = props.icon, tabindex = props.tabindex,
// other
twoToneColor = props.twoToneColor, onClick = props.onClick, restProps = __rest(props, ["icon", "tabindex", "twoToneColor", "onClick"]);
if (!icon)
return null;
var iconTabIndex = tabindex;
if (iconTabIndex === undefined && onClick) {
iconTabIndex = -1;
restProps.tabindex = iconTabIndex;
}
var _a = normalizeTwoToneColors(twoToneColor), primaryColor = _a[0], secondaryColor = _a[1];
return (h("span", { role: "img", "aria-label": icon.name },
h("o-icon-base", __assign({ icon: icon, primaryColor: primaryColor, secondaryColor: secondaryColor }, rmIEFP(restProps)))));
};
;
AntdIcon.propTypes = {
spin: Boolean,
rotate: Number,
twoToneColor: String,
};
AntdIcon.displayName = 'AntdIcon';
AntdIcon.inheritAttrs = false;
AntdIcon.css = iconStyles;
AntdIcon.getTwoToneColor = getTwoToneColor;
AntdIcon.setTwoToneColor = setTwoToneColor;
AntdIcon = __decorate([
tag('o-antd-icon')
], AntdIcon);
return AntdIcon;
}(OmiComponent));
export default AntdIcon;