@nomercyicons/react
Version:
31 lines • 1.05 kB
JavaScript
const React = require("react");
function AutoAwesomeMotionTwoToneIcon({
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: "M12 12h8v8h-8z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M14 2H4c-1.1 0-2 .9-2 2v10h2V4h10V2zM20 10h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-8v-8h8v8z"
}), /*#__PURE__*/React.createElement("path", {
d: "M18 6H8c-1.1 0-2 .9-2 2v10h2V8h10V6z"
}));
}
const ForwardRef = React.forwardRef(AutoAwesomeMotionTwoToneIcon);
module.exports = ForwardRef;