@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.89 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Foursquare({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Foursquare",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M13.516.464c-.284-.423-.837-.47-1.301-.464C9.418.013 6.619.006 3.82.004c-.16.005-.321.013-.48.044a1.284 1.284 0 0 0-1.026 1.026c-.082.502-.034 1.015-.04 1.521-.002 4.109.002 8.218-.004 12.327.012.253.02.53.178.743.248.339.75.423 1.116.241.22-.12.384-.316.549-.5 1.202-1.419 2.452-2.798 3.651-4.22.133-.15.288-.314.508-.302.865-.044 1.732.03 2.599-.015.294-.016.6-.1.814-.314.29-.286.38-.7.473-1.083.492-2.383.937-4.776 1.43-7.16.117-.601.288-1.296-.073-1.848Zm-2.158 3.86c-.072.237-.38.221-.586.238-1.04.02-2.081-.025-3.12.005-.318-.012-.662.187-.682.532-.067.43-.04 1.093.5 1.188 1.018.114 2.05-.038 3.07.06.34.011.346.412.293.66-.117.598-.206 1.207-.381 1.793-.045.195-.23.297-.418.298-.86.072-1.724-.03-2.583.032-.353.005-.563.32-.77.558a154.427 154.427 0 0 1-2.633 3.166c-.036-3.35.003-6.703-.02-10.055.007-.25-.005-.512.087-.75.131-.278.478-.271.74-.286 2.04.003 4.081.008 6.122-.002.338.01.694-.045.782.256.117.4-.243 1.783-.401 2.308Z",
shapeRendering: "geometricPrecision"
}));
}
Foursquare.displayName = 'Foursquare';
export default createBaseComponent(Foursquare);