@nomercyicons/react
Version:
24 lines • 1.98 kB
JavaScript
const React = require("react");
function FeedlyColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 56 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "#2BB24C",
fillRule: "evenodd",
d: "M31.41 28.03c-2.643 2.615-5.295 5.227-7.923 7.859-.737.896-2.037.613-3.048.53-.976-.622-1.733-1.54-2.517-2.378-.523-.49-.034-1.132.369-1.5a2147.8 2147.8 0 007.923-7.849c.48-.463.914-.996 1.495-1.348.583-.248 1.008.34 1.396.669.88.934 1.882 1.756 2.684 2.756.353.446-.056.946-.379 1.261m.278 12.357c-.74.825-1.514 1.635-2.383 2.324-.799.19-1.647.146-2.455.03-.776-.388-1.3-1.135-1.937-1.71-.452-.437-1.16-1.093-.578-1.723a45.048 45.048 0 013.126-3.102c.404-.338 1.01-.17 1.337.197.93.892 1.846 1.798 2.744 2.725.354.311.547.9.146 1.259M17.081 29.538c-.767.904-2.114.666-3.151.506a16.568 16.568 0 01-2.488-2.464c-.427-.497.12-1.015.458-1.366 4.642-4.578 9.267-9.176 13.901-13.76.622-.602 1.186-1.27 1.886-1.784.602-.299 1.066.347 1.467.69.852.9 1.818 1.698 2.6 2.66.402.478-.04 1.031-.393 1.372-4.764 4.71-9.532 9.42-14.28 14.146M52.316 21.6C46.04 15.382 39.762 9.168 33.492 2.948c-.918-.893-1.78-1.912-2.99-2.423C29.3-.041 27.906-.122 26.615.15c-1.13.257-2.15.87-2.965 1.678C16.594 8.819 9.536 15.812 2.476 22.8c-.812.803-1.447 1.806-1.705 2.922-.58 2.009.147 4.26 1.633 5.707 4.975 4.93 9.955 9.853 14.929 14.786a5.97 5.97 0 004.266 1.757c4.07.024 8.138-.003 12.206.014 1.831.115 3.683-.533 4.979-1.832 4.508-4.452 9.003-8.921 13.51-13.377.734-.737 1.53-1.428 2.127-2.284 1.098-1.565 1.28-3.676.638-5.45-.5-1.425-1.704-2.408-2.743-3.444"
}));
}
const ForwardRef = React.forwardRef(FeedlyColorIcon);
module.exports = ForwardRef;