UNPKG

@astraicons/react

Version:

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

24 lines 899 B
const React = require("react"); const { forwardRef } = require("react"); const CallOutgoingIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15.375 14.813c-2.395 2.52-8.592-3.658-6.187-6.188 1.467-1.545.122-3.478-.796-4.776-1.723-2.435-5.504.927-5.39 3.066.363 6.746 7.66 14.74 14.726 14.042 2.21-.218 4.75-4.21 2.214-5.669-1.268-.73-3.233-1.88-4.567-.476M14 8l2-2 2 2" })); const ForwardRef = forwardRef(CallOutgoingIcon); module.exports = ForwardRef;