@nomercyicons/react
Version:
30 lines • 959 B
JavaScript
const React = require("react");
function LivingSharpIcon({
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: "M15.5 12v2.5h-7V12h-2v4.5h11V12z"
}), /*#__PURE__*/React.createElement("path", {
d: "M10 10v3h4v-3l2.25-.01V7.5h-8.5v2.49z"
}), /*#__PURE__*/React.createElement("path", {
d: "M22 2H2v20h20V2zm-3 7.99V18H5v-8l1.25-.01V6h11.5v3.99H19z"
}));
}
const ForwardRef = React.forwardRef(LivingSharpIcon);
module.exports = ForwardRef;