@nomercyicons/react
Version:
25 lines • 958 B
JavaScript
const React = require("react");
function FlickrIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 47 21",
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("g", {
fill: "currentColor",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("path", {
d: "M46.83 10.17c0 5.616-4.613 10.172-10.313 10.172-5.705 0-10.32-4.556-10.32-10.172C26.197 4.555 30.812 0 36.517 0c5.7 0 10.312 4.555 10.312 10.17M20.63 10.17c0 5.616-4.615 10.172-10.32 10.172C4.611 20.342 0 15.786 0 10.17 0 4.555 4.612 0 10.31 0c5.705 0 10.32 4.555 10.32 10.17"
})));
}
const ForwardRef = React.forwardRef(FlickrIcon);
module.exports = ForwardRef;