@nomercyicons/react
Version:
24 lines • 1.29 kB
JavaScript
import * as React from "react";
function FoursquareColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 34 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: "#FA4778",
fillRule: "evenodd",
d: "M28.328 6.931l-1.137 5.552c-.13.591-.682 1.117-1.364 1.117H15.95c-1.105 0-2.014.92-2.014 2.037v1.215c0 1.117.91 2.037 2.014 2.037H24.3c.78 0 1.43.755 1.267 1.576-.162.855-1.04 5.19-1.137 5.65-.065.493-.585 1.117-1.365 1.117h-6.822c-1.43.033-1.721.066-2.566 1.117-.845 1.052-8.317 10.512-8.317 10.512-.065.099-.13.066-.13-.033V6.668c0-.755.618-1.38 1.365-1.38h20.499c.715 0 1.43.724 1.234 1.643M29.823 0H4.516C1.04 0 0 2.66 0 4.336v40.668c0 2.004 1.007 2.595 1.56 2.825.552.23 2.014.394 3.053-.657l12.215-14.388c.195-.23.292-.23.422-.23h7.602c3.249 0 3.866-2.267 4.223-3.646.293-1.15 3.639-17.575 4.679-22.765C34.534 2.135 33.526 0 29.823 0"
}));
}
const ForwardRef = React.forwardRef(FoursquareColorIcon);
export default ForwardRef;