@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.29 kB
JavaScript
const React = require("react");
function VirusIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12 2v5m0-5c-.713 0-1.41.075-2.08.217M12 2c.713 0 1.41.075 2.08.217M12 7a5 5 0 00-5 5m5-5a5 5 0 015 5m-5 5v5m0-5a5 5 0 005-5m-5 5a5 5 0 01-5-5m5 10c.712 0 1.407-.075 2.077-.216M12 22c-.715 0-1.412-.075-2.085-.218M4.93 4.93l3.535 3.535m7.072 7.072l3.535 3.535M2 12h5m-5 0c0 .713.075 1.41.217 2.08M2 12c0-.714.075-1.411.217-2.083M17 12h5m0 0c0-.713-.075-1.41-.217-2.08M22 12c0 .713-.075 1.409-.216 2.08M4.928 19.07l3.535-3.536m7.072-7.07l3.535-3.536m-1.624-1.317a10.053 10.053 0 012.942 2.943m-.003 10.895a10.053 10.053 0 01-2.941 2.94m-10.891-.002a10.055 10.055 0 01-2.94-2.937M3.613 6.554a10.054 10.054 0 012.94-2.942"
}));
}
const ForwardRef = React.forwardRef(VirusIcon);
module.exports = ForwardRef;