@semcore/icon
Version:
Semrush Icon Component
32 lines • 1.93 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 PinList({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "PinList",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1.757 2.742A6.028 6.028 0 0 1 6 1c1.592 0 3.118.627 4.243 1.742A5.919 5.919 0 0 1 12 6.946c0 2.409-1.335 4.306-2.571 5.556a13.458 13.458 0 0 1-2.541 2l-.06.036-.018.01-.005.004-.015.009L6 15l-.79-.44-.015-.008-.005-.003-.018-.011-.06-.036a12.894 12.894 0 0 1-.799-.525 13.458 13.458 0 0 1-1.742-1.475C1.335 11.252 0 9.355 0 6.946c0-1.577.632-3.089 1.757-4.204ZM6 2.979A4.02 4.02 0 0 0 3.172 4.14 3.95 3.95 0 0 0 2 6.946c0 1.662.927 3.087 2 4.17a11.527 11.527 0 0 0 2 1.602 11.527 11.527 0 0 0 2-1.601c1.073-1.084 2-2.51 2-4.171A3.95 3.95 0 0 0 8.828 4.14 4.017 4.017 0 0 0 6 2.98Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M14 4a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1Zm-1 5a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Zm-1 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-3Z",
shapeRendering: "geometricPrecision"
}));
}
PinList.displayName = 'PinList';
export default createBaseComponent(PinList);