@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 754 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const CloseIcon = ({
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", {
d: "M7.532 6.472a.75.75 0 1 0-1.06 1.06l4.468 4.47-4.467 4.467a.75.75 0 0 0 1.06 1.06l4.468-4.467 4.468 4.468a.75.75 0 1 0 1.06-1.061l-4.467-4.468 4.468-4.468a.75.75 0 0 0-1.06-1.061L12 10.94z"
}));
const ForwardRef = forwardRef(CloseIcon);
module.exports = ForwardRef;