UNPKG

@astraicons/react

Version:

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

21 lines 947 B
import * as React from "react"; function AddCallIcon({ 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: "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.3l-.038-.021c-1.41-.811-3.568-2.053-5.037-.507M14.25 7.496a.75.75 0 0 1 .75-.75h.746V6a.75.75 0 0 1 1.5 0v.746h.748a.75.75 0 0 1 0 1.5h-.748v.748a.75.75 0 0 1-1.5 0v-.748H15a.75.75 0 0 1-.75-.75" })); } const ForwardRef = React.forwardRef(AddCallIcon); export default ForwardRef;