styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.22 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.GlobeOutline = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M11 6c2.206 0 4 1.794 4 4s-1.794 4-4 4c-2.204 0-3.998-1.794-3.998-4S8.796 6 11 6m0-2c-3.314 0-5.998 2.686-5.998 6A5.998 5.998 0 1017 10a6 6 0 00-6-6zm6 16h-4v-1.23a8.92 8.92 0 004.363-2.406A8.944 8.944 0 0020 10.001a8.927 8.927 0 00-1.968-5.619l.675-.673a1.001 1.001 0 00-1.414-1.416l-2.052 2.049.708.708C17.271 6.371 18 8.13 18 10s-.729 3.627-2.051 4.949S12.87 17 11 17s-3.627-.729-4.949-2.051a.999.999 0 10-1.414 1.414A8.942 8.942 0 0011 19v1H7a1 1 0 100 2h10a1 1 0 100-2z", key: "k0" })));
});
exports.GlobeOutline.displayName = 'GlobeOutline';
exports.GlobeOutlineDimensions = { height: 24, width: 24 };
;