@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 989 B
JavaScript
const React = require("react");
function TagCrossIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9.241 5h6.806C19.335 5 22 7.462 22 10.5v3c0 3.038-2.665 5.5-5.953 5.5H9.241c-1.816 0-3.533-.766-4.662-2.08l-1.289-1.5c-1.72-2.003-1.72-4.837 0-6.84l1.289-1.5C5.708 5.767 7.425 5 9.24 5Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m10.4 10 4.243 4.243M10.4 14.243 14.643 10"
}));
}
const ForwardRef = React.forwardRef(TagCrossIcon);
module.exports = ForwardRef;