@semcore/icon
Version:
Semrush Icon Component
34 lines • 2.15 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 PinMap({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "PinMap",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7.035 2.122A6.907 6.907 0 0 1 12 0c1.87 0 3.655.768 4.965 2.122A7.296 7.296 0 0 1 19 7.192c0 2.908-1.546 5.219-3.014 6.766a16.118 16.118 0 0 1-3.08 2.514l-.02.014-.007.004-.016.01L12 17l-.863-.5-.015-.01-.007-.004-.022-.014a10.571 10.571 0 0 1-.296-.188 16.119 16.119 0 0 1-2.783-2.325C6.546 12.41 5 10.098 5 7.192c0-1.895.728-3.72 2.035-5.071ZM12 1.982c-1.312 0-2.58.538-3.52 1.51A5.324 5.324 0 0 0 7 7.193c0 2.19 1.168 4.036 2.471 5.409A14.118 14.118 0 0 0 12 14.696c.432-.278 1.49-1 2.529-2.095C15.832 11.228 17 9.381 17 7.193a5.324 5.324 0 0 0-1.48-3.7A4.898 4.898 0 0 0 12 1.982Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M24 7a1 1 0 0 0-1.447-.894l-2 1a1 1 0 1 0 .894 1.788L22 8.618v7.828l-7.111 4.444-7.538-2.826a1 1 0 0 0-.734.012L2 19.988v-7.815l.523-.32a1 1 0 0 0-1.046-1.706l-1 .613a1 1 0 0 0-.477.853v9.87a1 1 0 0 0 1.383.925l5.635-2.333 7.63 2.861a1 1 0 0 0 .882-.088l8-5A1 1 0 0 0 24 17V7Z",
shapeRendering: "geometricPrecision"
}));
}
PinMap.displayName = 'PinMap';
export default createBaseComponent(PinMap);