@nomercyicons/react
Version:
33 lines • 1.17 kB
JavaScript
const React = require("react");
function EmojiPeopleRoundedIcon({
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: 12,
cy: 4,
r: 2
}), /*#__PURE__*/React.createElement("path", {
d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54a5.023 5.023 0 01-4.92-4.15.998.998 0 00-.98-.85c-.61 0-1.09.54-1 1.14A7.037 7.037 0 009 8.71V21c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V10.05l3.24 3.24a.996.996 0 101.41-1.41l-3.76-3.77z"
}));
}
const ForwardRef = React.forwardRef(EmojiPeopleRoundedIcon);
module.exports = ForwardRef;