@nomercyicons/react
Version:
24 lines • 1.46 kB
JavaScript
import * as React from "react";
function WhatsappColorIcon({
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: "#67C15E",
fillRule: "evenodd",
d: "M23.993 0h.014C37.237 0 48 10.766 48 24S37.238 48 24.007 48a23.81 23.81 0 01-13.203-3.964L1.58 46.984l2.99-8.917A23.824 23.824 0 010 24C0 10.765 10.762 0 23.993 0zm-6.7 12.19c-.466-1.114-.818-1.156-1.523-1.185a13.55 13.55 0 00-.804-.027c-.918 0-1.877.268-2.455.86-.705.72-2.454 2.398-2.454 5.841s2.51 6.773 2.849 7.239c.353.465 4.895 7.632 11.947 10.553 5.515 2.286 7.152 2.074 8.407 1.806 1.834-.395 4.133-1.75 4.711-3.386.579-1.637.579-3.034.41-3.33-.17-.296-.636-.465-1.34-.818-.706-.353-4.134-2.046-4.783-2.272-.634-.24-1.24-.155-1.72.522-.677.946-1.34 1.905-1.876 2.483-.423.452-1.115.509-1.693.268-.776-.324-2.948-1.086-5.628-3.47-2.074-1.849-3.484-4.148-3.893-4.84-.41-.705-.042-1.114.282-1.495.353-.438.691-.748 1.044-1.157.352-.41.55-.621.776-1.1.24-.466.07-.946-.1-1.3-.168-.352-1.579-3.795-2.157-5.191z"
}));
}
const ForwardRef = React.forwardRef(WhatsappColorIcon);
export default ForwardRef;