UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

23 lines 970 B
const React = require("react"); function CallReceivedIcon({ 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", { fillRule: "evenodd", d: "M8.875 8.25c-2.671 2.811 4.214 9.676 6.875 6.875 1.47-1.546 3.628-.304 5.037.507l.038.021c2.817 1.622-.005 6.057-2.461 6.3-7.851.774-15.959-8.108-16.361-15.603C1.875 3.974 6.077.238 7.99 2.944c1.02 1.442 2.515 3.59.884 5.306M19.56 5.498a.75.75 0 0 0-1.12-.996L16.332 6.87l-.771-.869a.75.75 0 1 0-1.122.996l1.332 1.5a.75.75 0 0 0 1.121 0z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(CallReceivedIcon); module.exports = ForwardRef;