@nomercyicons/react
Version:
29 lines • 994 B
JavaScript
const React = require("react");
function BlindsTwoToneIcon({
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: "M6 9h8v2H6zM6 5h8v2H6zM16 9h2v2h-2zM16 5h2v2h-2z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M20 19V3H4v16H2v2h20v-2h-2zM6 5h8v2H6V5zm0 4h8v2H6V9zm12 10H6v-6h8v1.82A1.746 1.746 0 0015 18a1.746 1.746 0 001-3.18V13h2v6zm0-8h-2V9h2v2zm0-4h-2V5h2v2z"
}));
}
const ForwardRef = React.forwardRef(BlindsTwoToneIcon);
module.exports = ForwardRef;