@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.2 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const RemoveCallIcon = ({
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: "M19.942 15.288c2.536 1.46-.004 5.451-2.215 5.67-7.065.697-14.362-7.297-14.724-14.043-.115-2.139 3.666-5.501 5.389-3.066.918 1.298 2.263 3.231.796 4.776"
}), /*#__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.438 6.438l2.116 2.116m-2.116 0 2.117-2.117",
opacity: 0.4
}));
const ForwardRef = forwardRef(RemoveCallIcon);
module.exports = ForwardRef;