UNPKG

@nomercyicons/react

Version:
53 lines 1.45 kB
const React = require("react"); function ShowerTwoToneIcon({ 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 0h24v24H0V0z" }), /*#__PURE__*/React.createElement("path", { d: "M12 7c-2.76 0-5 2.24-5 5h10c0-2.76-2.24-5-5-5z", opacity: 0.3 }), /*#__PURE__*/React.createElement("circle", { cx: 8, cy: 20, r: 1 }), /*#__PURE__*/React.createElement("circle", { cx: 16, cy: 17, r: 1 }), /*#__PURE__*/React.createElement("path", { d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92zM7 12c0-2.76 2.24-5 5-5s5 2.24 5 5H7z" }), /*#__PURE__*/React.createElement("circle", { cx: 16, cy: 20, r: 1 }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 17, r: 1 }), /*#__PURE__*/React.createElement("circle", { cx: 8, cy: 17, r: 1 }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 20, r: 1 })); } const ForwardRef = React.forwardRef(ShowerTwoToneIcon); module.exports = ForwardRef;