@scienceicons/react
Version:
Open science icons for React
21 lines • 870 B
JavaScript
const React = require("react");
function BlueskyIcon({
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: "M5.9 4.2C8.4 6 11 9.8 12 11.8c1-2 3.6-5.8 6.1-7.7 1.8-1.3 4.7-2.4 4.7.9 0 .7-.4 5.5-.6 6.3-.8 2.8-3.6 3.5-6.1 3 4.4.7 5.5 3.2 3.1 5.7-4.6 4.7-6.6-1.2-7.1-2.7-.1-.1-.1-.3-.1-.2 0-.1 0 0-.1.3-.5 1.5-2.5 7.4-7.1 2.7-2.4-2.5-1.3-4.9 3.1-5.7-2.5.4-5.3-.3-6.1-3-.2-.8-.6-5.7-.6-6.3 0-3.3 2.9-2.3 4.7-.9z"
}));
}
const ForwardRef = React.forwardRef(BlueskyIcon);
module.exports = ForwardRef;