UNPKG

@astraicons/react

Version:

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

23 lines 903 B
import * as React from "react"; function MinusCallIcon({ 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.306M15 6.746a.75.75 0 0 0 0 1.5h2.994a.75.75 0 0 0 0-1.5z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(MinusCallIcon); export default ForwardRef;