UNPKG

@nomercyicons/react

Version:
31 lines 1.3 kB
const React = require("react"); function PlumbingRoundedIcon({ 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("g", { fill: "none" }, /*#__PURE__*/React.createElement("path", { d: "M0 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M0 0h24v24H0z" })), /*#__PURE__*/React.createElement("path", { d: "M19.28 4.93l-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54a3.012 3.012 0 000-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" }), /*#__PURE__*/React.createElement("path", { d: "M14.33 8.46l-.71.71-3.18-3.18a1.49 1.49 0 00-2.12 0 1.49 1.49 0 000 2.12l3.18 3.18-7 7c-.7.7-.88 1.84-.29 2.65a2.005 2.005 0 003.05.26l9.19-9.2a.996.996 0 101.41-1.41l-2.12-2.12a.987.987 0 00-1.41-.01z" })); } const ForwardRef = React.forwardRef(PlumbingRoundedIcon); module.exports = ForwardRef;