@nomercyicons/react
Version:
55 lines • 1.92 kB
JavaScript
const React = require("react");
function BathroomTwoToneIcon({
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: "M4 20h16V4H4v16zm5-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c0-2.76 2.24-5 5-5s5 2.24 5 5v1H7v-1z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("circle", {
cx: 15,
cy: 14,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 14,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 15,
cy: 17,
r: 1
}), /*#__PURE__*/React.createElement("path", {
d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z"
}), /*#__PURE__*/React.createElement("path", {
d: "M17 11c0-2.76-2.24-5-5-5s-5 2.24-5 5v1h10v-1zm-8.46-.5c.24-1.69 1.7-3 3.46-3s3.22 1.31 3.47 3H8.54z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 9,
cy: 17,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 9,
cy: 14,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 17,
r: 1
}));
}
const ForwardRef = React.forwardRef(BathroomTwoToneIcon);
module.exports = ForwardRef;