@nomercyicons/react
Version:
23 lines • 2.03 kB
JavaScript
const React = require("react");
function YelpColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
viewBox: "0 0 36 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: "#D32200",
fillRule: "evenodd",
d: "M.917 23.109c.36-.578.886-.878 1.474-.855.385.004.726.13 8.347 3.323.006 0 2.226.921 2.226.921.805.306 1.294 1.157 1.244 2.117-.053.939-.581 1.674-1.367 1.875-.013.007-3.165 1.027-3.165 1.027-7.092 2.318-7.326 2.384-7.703 2.363-.59-.02-1.106-.374-1.412-.966-.222-.43-.376-1.148-.47-2.01-.264-2.612.059-6.546.826-7.795zm17.048 23.795c-.205.564-.682.94-1.342 1.063-1.896.329-7.834-1.891-9.07-3.388-.251-.31-.4-.645-.431-.981-.029-.236.005-.47.083-.695.131-.378.35-.672 5.692-7.042.006 0 1.56-1.875 1.56-1.875.532-.675 1.479-.888 2.359-.545.858.338 1.377 1.083 1.327 1.9l-.02 3.38c-.02 7.57-.034 7.821-.158 8.183zm12.042-2.634c-.621.255-1.216.193-1.684-.182-.304-.24-.624-.73-4.833-7.674l-1.252-2.068c-.479-.743-.385-1.72.213-2.462.577-.727 1.438-.999 2.188-.703.041.02 3.15 1.063 3.15 1.063 7.085 2.363 7.318 2.453 7.617 2.682.459.37.666.954.572 1.63-.275 1.942-4.182 6.99-5.971 7.714zm-3.66-17.872c-1.292.312-2.004.487-2.4.642l.041-.07c-.804.227-1.683-.166-2.203-.973-.5-.78-.495-1.692.02-2.325.022-.025 1.972-2.724 1.972-2.724 4.312-5.99 4.543-6.301 4.854-6.508.498-.34 1.105-.362 1.71-.066 1.706.847 5.173 6.076 5.38 8.083.003.026 0 .047 0 .07.041.68-.204 1.24-.69 1.571-.319.212-.63.318-8.684 2.3zM18.26 19.64c.133 2.766-1.035 3.133-1.417 3.255-.383.121-1.557.489-2.998-1.883 0 0-9.739-15.564-9.967-16.044-.14-.538.035-1.15.501-1.645C5.836 1.797 13.693-.443 15.748.076c.671.173 1.135.606 1.301 1.21.113.671 1.072 15.113 1.21 18.355z"
}));
}
const ForwardRef = React.forwardRef(YelpColorIcon);
module.exports = ForwardRef;