@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 908 B
JavaScript
import * as React from "react";
function CloseCircleIcon({
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: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10m-7.349-2.651a.75.75 0 0 1 0 1.06L13.061 12l1.59 1.591a.75.75 0 0 1-1.06 1.06L12 13.062l-1.591 1.59a.75.75 0 1 1-1.06-1.06L10.938 12l-1.59-1.59a.75.75 0 1 1 1.06-1.061L12 10.939l1.59-1.59a.75.75 0 0 1 1.061 0",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(CloseCircleIcon);
export default ForwardRef;