@nomercyicons/react
Version:
24 lines • 1.19 kB
JavaScript
const React = require("react");
function InternetexplorerIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 47",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "currentColor",
fillRule: "evenodd",
d: "M26.512 36.456c-5.282 0-9.044-4.58-9.175-9.235h30.622c.467-10.025-3-17.136-11.883-22.095 1.298-1.42 11.93-5.156 9.209 4.998l1.045 1.51c4.612-13.971-9.24-13.212-18.407-8.777C14.712 2.813 7.231 11.08 5.175 19.564c3.572-5.1 8.188-8.122 11.2-8.963-17.232 13.782-25.238 44.18-1.838 34.546l-1.624-.974c-14.082 4.418-8.641-8.066-5.931-9.866 3.244 6.6 10.156 11.874 18.611 11.874 10.762 0 18.756-5.528 21.928-14.696H35.098c-1.794 3.178-4.288 4.971-8.586 4.971zm0-23.668c5.283 0 8.804 4.122 8.935 8.212h-17.98c.176-3.48 3.402-8.212 9.045-8.212z"
}));
}
const ForwardRef = React.forwardRef(InternetexplorerIcon);
module.exports = ForwardRef;