@nomercyicons/react
Version:
24 lines • 859 B
JavaScript
import * as React from "react";
function RssIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 44 44",
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: "currentColor",
fillRule: "evenodd",
d: "M0 37.714a6.286 6.286 0 1112.572 0 6.286 6.286 0 01-12.572 0zM44 44h-8.38C35.62 24.359 19.642 8.38 0 8.38V0c24.261 0 44 19.739 44 44zm-14.666 0h-8.38c0-11.553-9.401-20.952-20.954-20.952v-8.382c16.175 0 29.334 13.16 29.334 29.334z"
}));
}
const ForwardRef = React.forwardRef(RssIcon);
export default ForwardRef;