@nomercyicons/react
Version:
47 lines • 1.77 kB
JavaScript
const React = require("react");
function FaxTwoToneIcon({
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: "M5 10c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1v-7c0-.55-.45-1-1-1zM10 6h6v3h-6zM19 11H8v7h12v-6c0-.55-.45-1-1-1zm-6 6H9v-5h4v5zm2 0c-.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 1z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M19 9h-1V4H8v5h-.78C6.67 8.39 5.89 8 5 8c-1.66 0-3 1.34-3 3v7c0 1.66 1.34 3 3 3 .89 0 1.67-.39 2.22-1H22v-8c0-1.66-1.34-3-3-3zM6 18c0 .55-.45 1-1 1s-1-.45-1-1v-7c0-.55.45-1 1-1s1 .45 1 1v7zm4-12h6v3h-6V6zm10 12H8v-7h11c.55 0 1 .45 1 1v6z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 15,
cy: 13,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 18,
cy: 13,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 15,
cy: 16,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 18,
cy: 16,
r: 1
}), /*#__PURE__*/React.createElement("path", {
d: "M9 12h4v5H9z"
}));
}
const ForwardRef = React.forwardRef(FaxTwoToneIcon);
module.exports = ForwardRef;