@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.03 kB
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",
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: "M16.047 5H9.241c-1.816 0-3.533.766-4.662 2.08L3.29 8.58c-1.72 2.003-1.72 4.837 0 6.84l1.289 1.5C5.708 18.233 7.425 19 9.24 19h6.806C19.335 19 22 16.538 22 13.5v-3C22 7.462 19.335 5 16.047 5m-.874 4.47a.75.75 0 0 1 0 1.06l-1.59 1.591 1.59 1.591a.75.75 0 0 1-1.06 1.061l-1.591-1.591-1.592 1.591a.75.75 0 1 1-1.06-1.06l1.59-1.592-1.59-1.59a.75.75 0 1 1 1.06-1.061l1.592 1.59 1.59-1.59a.75.75 0 0 1 1.06 0",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(TagCrossIcon);
module.exports = ForwardRef;