@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 911 B
JavaScript
const React = require("react");
function CallIncomingIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M15.75 15.125c-2.661 2.8-9.546-4.064-6.875-6.875 1.631-1.717.136-3.864-.884-5.306C6.077.238 1.875 3.974 2.003 6.35c.402 7.495 8.51 16.377 16.36 15.603 2.457-.243 5.279-4.678 2.462-6.3-1.409-.81-3.592-2.088-5.075-.528M14 6l2 2 2-2"
}));
}
const ForwardRef = React.forwardRef(CallIncomingIcon);
module.exports = ForwardRef;