@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 1.59 kB
JavaScript
import * as React from "react";
function WhatsappIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M12.038 3.29c-4.94 0-8.96 3.873-8.963 8.632a8.37 8.37 0 0 0 1.197 4.315L3 20.71l4.751-1.2a9.2 9.2 0 0 0 4.283 1.05h.004c4.94 0 8.96-3.872 8.962-8.631.001-2.306-.93-4.475-2.623-6.107-1.692-1.631-3.942-2.531-6.34-2.532m0 15.812h-.003a7.65 7.65 0 0 1-3.792-1l-.273-.155-2.818.712.752-2.648-.177-.271a6.96 6.96 0 0 1-1.139-3.818c.002-3.956 3.344-7.174 7.453-7.174 1.989 0 3.86.748 5.266 2.104s2.181 3.159 2.18 5.076c-.002 3.956-3.343 7.174-7.45 7.174m4.086-5.373c-.224-.108-1.325-.63-1.53-.702s-.355-.109-.504.107-.579.702-.709.845-.261.162-.486.054-.945-.335-1.8-1.07c-.666-.572-1.116-1.278-1.246-1.494s-.014-.332.098-.44c.1-.096.224-.251.336-.377.11-.126.148-.216.224-.36.074-.144.037-.27-.02-.378s-.503-1.17-.69-1.601c-.182-.42-.366-.364-.504-.371-.13-.006-.28-.008-.43-.008a.84.84 0 0 0-.597.27c-.205.216-.783.738-.783 1.8 0 1.061.802 2.087.914 2.23.112.144 1.58 2.323 3.826 3.258.534.221.951.354 1.277.454.536.164 1.025.14 1.41.085.43-.062 1.325-.521 1.511-1.024.187-.504.187-.936.131-1.026-.054-.09-.204-.144-.428-.252"
}));
}
const ForwardRef = React.forwardRef(WhatsappIcon);
export default ForwardRef;