@scienceicons/react
Version:
Open science icons for React
23 lines • 1.18 kB
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: "M10.9 2.1c-3.5.4-6.6 2.7-8 5.9-.9 2.1-1.1 4.5-.4 6.7.8 2.8 2.9 5.1 5.6 6.3 2.1.9 4.5 1.1 6.7.4 3.3-1 6-3.7 6.8-7.1 1.3-5.3-2-10.8-7.3-12.1-1.2-.1-2.2-.2-3.4-.1zm.2 6.2c.8 1.1 1.6 2.1 1.6 2.1s.9-.9 1.9-2.1l1.9-2.1h1.1l-.2.2c-.1.1-1 1.1-1.9 2.1-.9 1-1.8 2-2 2.2l-.4.3 2.5 3.3c1.4 1.8 2.5 3.3 2.5 3.4 0 0-.8.1-1.8.1h-1.8l-1.7-2.3c-1.2-1.6-1.7-2.2-1.8-2.2 0 0-1 1-2.1 2.3l-2 2.2h-1s1.1-1.2 2.3-2.6c1.3-1.4 2.3-2.5 2.4-2.6 0 0-1-1.5-2.3-3.2C7 7.7 5.9 6.3 5.9 6.2h3.6l1.6 2.1z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.5 7.1s1.7 2.3 3.7 5l3.6 4.9h.8c.5 0 .8 0 .8-.1 0 0-1.7-2.3-3.7-5L9.1 7h-.8c-.7 0-.8 0-.8.1z"
}));
}
const ForwardRef = React.forwardRef(XIcon);
module.exports = ForwardRef;