@nomercyicons/react
Version:
24 lines • 1.38 kB
JavaScript
import * as React from "react";
function TinderColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
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: "#E34514",
fillRule: "evenodd",
d: "M19.26 0c.419.324.782.722 1.183 1.07 3.619 3.447 6.935 7.254 9.604 11.503 2.583 4.112 4.568 8.66 5.45 13.463.486 2.632.647 5.332.363 7.994-.13 1.114-.32 2.228-.672 3.291-.493 1.543-1.14 3.043-2.028 4.399a12.423 12.423 0 01-2.823 3.06c-1.215.928-2.602 1.606-4.044 2.072-1.794.579-3.674.865-5.548 1.02-2.238.169-4.488.2-6.719-.086-2.527-.318-5.036-.996-7.286-2.221-2.084-1.133-3.915-2.794-5.092-4.884C.286 38.29-.164 35.46.051 32.73c.222-2.894 1.135-5.7 2.343-8.319 1.048-2.252 2.33-4.386 3.754-6.414a47.776 47.776 0 013.951-4.908c.025-.02.074-.063.105-.081-.025 1.3.099 2.606.469 3.857a9.972 9.972 0 001.855 3.502c.05.063.086.15.179.162 1.83-1.387 3.563-2.942 4.913-4.815 1.4-1.935 2.336-4.2 2.694-6.57.474-3.067.067-6.258-1.054-9.145z"
}));
}
const ForwardRef = React.forwardRef(TinderColorIcon);
export default ForwardRef;