Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
"use strict";
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)
            t[p[i]] = s[p[i]];
    return t;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
    return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const react_1 = __importDefault(require("react"));
const Vector_1 = __importDefault(require("atoms/Vector"));
const wording = {
    description: 'A icon, representing plus button.',
    title: 'Plus icon',
};
class PlusIcon extends react_1.default.PureComponent {
    render() {
        const _a = this.props, { type, fill } = _a, remainingProps = __rest(_a, ["type", "fill"]);
        return (react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording, { stroke: "none" }),
            react_1.default.createElement("g", null,
                react_1.default.createElement("circle", { stroke: fill, strokeWidth: "1", cx: "9.5", cy: "9.5", r: "10", fill: "none" }),
                react_1.default.createElement("rect", { x: "4", y: "9", width: "11", height: "1" }),
                react_1.default.createElement("rect", { transform: "translate(9.500000, 9.500000) rotate(90.000000) translate(-9.500000, -9.500000) ", x: "4", y: "9", width: "11", height: "1" }))));
    }
}
PlusIcon.defaultProps = {
    width: '21px',
    height: '21px',
    viewBox: '-1 -1 21 21',
    fill: '#1e1e1e',
};
exports.PlusIcon = PlusIcon;
exports.default = PlusIcon;
//# sourceMappingURL=PlusIcon.js.map