@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.01 kB
JavaScript
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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M9.517 3.25c-1.914 0-3.68 1.027-4.817 2.709L3.54 7.673c-1.72 2.542-1.72 6.113 0 8.655l1.16 1.715c1.137 1.682 2.903 2.708 4.817 2.708h6.125c3.481 0 6.108-3.267 6.108-7.036v-3.429c0-3.768-2.627-7.035-6.108-7.035zm1.414 6.22a.75.75 0 1 0-1.06 1.062l1.59 1.59-1.591 1.592a.75.75 0 0 0 1.06 1.06l1.592-1.591 1.59 1.591a.75.75 0 0 0 1.061-1.06l-1.59-1.592 1.59-1.59a.75.75 0 0 0-1.06-1.061l-1.591 1.59z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(TagCrossIcon);
module.exports = ForwardRef;