@nomercyicons/react
Version:
33 lines • 1.05 kB
JavaScript
const React = require("react");
function Man4RoundedIcon({
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("g", {
fill: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
})), /*#__PURE__*/React.createElement("path", {
d: "M13.75 7h-3.5C9.04 7 8.11 8.07 8.27 9.26L9.82 20.7c.1.74.74 1.3 1.49 1.3h1.38a1.5 1.5 0 001.49-1.3l1.56-11.44C15.89 8.07 14.96 7 13.75 7z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 4,
r: 2
}));
}
const ForwardRef = React.forwardRef(Man4RoundedIcon);
module.exports = ForwardRef;