@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 754 B
JavaScript
import * as React from "react";
function CloseIcon({
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: "M16.809 8.113a.652.652 0 0 0-.923-.922L12 11.078 8.114 7.19a.652.652 0 1 0-.923.922L11.078 12 7.19 15.887a.652.652 0 0 0 .922.922L12 12.922l3.887 3.887a.652.652 0 0 0 .922-.922L12.922 12z"
}));
}
const ForwardRef = React.forwardRef(CloseIcon);
export default ForwardRef;