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 __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: 'Search icon',
    title: 'Search Icon',
    vectorClassName: 'search',
};
class SearchIcon extends react_1.default.PureComponent {
    render() {
        const { fill } = this.props;
        return (react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording),
            react_1.default.createElement("g", { fill: "none", fillRule: "evenodd" },
                react_1.default.createElement("path", { d: "M12.5 11h-.79l-.28-.27A6.471 6.471 0 0 0 13 6.5 6.5 6.5 0 1 0 6.5 13c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L17.49 16l-4.99-5zm-6 0C4.01 11 2 8.99 2 6.5S4.01 2 6.5 2 11 4.01 11 6.5 8.99 11 6.5 11z", fill: fill }),
                react_1.default.createElement("path", { d: "M-3-3h24v24H-3z" }))));
    }
}
SearchIcon.defaultProps = {
    width: '18px',
    height: '18px',
    viewBox: '0 0 18 18',
    fill: '#000000',
};
exports.SearchIcon = SearchIcon;
exports.default = SearchIcon;
//# sourceMappingURL=SearchIcon.js.map