@nomercyicons/react
Version:
26 lines • 1.17 kB
JavaScript
const React = require("react");
function SettingsEthernetRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
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: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.71 6.71a.996.996 0 00-1.41 0L1.71 11.3a.996.996 0 000 1.41L6.3 17.3a.996.996 0 101.41-1.41L3.83 12l3.88-3.88c.38-.39.38-1.03 0-1.41zm8.58 0a.996.996 0 000 1.41L20.17 12l-3.88 3.88a.996.996 0 101.41 1.41l4.59-4.59a.996.996 0 000-1.41L17.7 6.7c-.38-.38-1.02-.38-1.41.01zM8 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4-2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
}));
}
const ForwardRef = React.forwardRef(SettingsEthernetRoundedIcon);
module.exports = ForwardRef;