@nomercyicons/react
Version:
33 lines • 1.04 kB
JavaScript
const React = require("react");
function PersonAddAlt1RoundedIcon({
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("circle", {
cx: 9,
cy: 8,
r: 4
}), /*#__PURE__*/React.createElement("path", {
d: "M9 14c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zM20 10V7h-2v3h-3v2h3v3h2v-3h3v-2z"
}));
}
const ForwardRef = React.forwardRef(PersonAddAlt1RoundedIcon);
module.exports = ForwardRef;