@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 699 B
JavaScript
const React = require("react");
function XIcon({
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", {
d: "m4.039 4 6.177 8.825L4 20h1.4l5.442-6.282L15.239 20H20l-6.525-9.321L19.26 4h-1.4L12.85 9.785 8.8 4zm2.057 1.101h2.188l9.658 13.798h-2.187z"
}));
}
const ForwardRef = React.forwardRef(XIcon);
module.exports = ForwardRef;