UNPKG

@astraicons/react

Version:

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

27 lines 986 B
const React = require("react"); const { forwardRef } = require("react"); const TagCrossIcon = ({ 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", d: "M9.517 4h6.125C18.602 4 21 6.814 21 10.286v3.428C21 17.186 18.601 20 15.642 20H9.517c-1.635 0-3.18-.876-4.196-2.378l-1.16-1.714c-1.548-2.289-1.548-5.527 0-7.816l1.16-1.714C6.337 4.876 7.882 4 9.517 4Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m10.4 10 4.243 4.243M10.4 14.243 14.643 10" })); const ForwardRef = forwardRef(TagCrossIcon); module.exports = ForwardRef;