@nomercyicons/react
Version:
24 lines • 881 B
JavaScript
const React = require("react");
function MessengerColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
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: "#007FFF",
fillRule: "evenodd",
d: "M24 0C10.745 0 0 9.95 0 22.222c0 6.994 3.49 13.231 8.944 17.305V48l8.172-4.485c2.18.604 4.491.93 6.884.93 13.255 0 24-9.95 24-22.223S37.255 0 24 0zm2.385 29.926l-6.112-6.519-11.925 6.519L21.466 16l6.26 6.519L39.504 16 26.385 29.926z"
}));
}
const ForwardRef = React.forwardRef(MessengerColorIcon);
module.exports = ForwardRef;