@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
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const AddCallIcon = ({
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-.476M15 7.496h2.994M16.496 8.994V6"
}));
const ForwardRef = forwardRef(AddCallIcon);
export default ForwardRef;