@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.19 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 Tack({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Tack",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 3.004H7a1 1 0 1 1 0-2h10a1 1 0 1 1 0 2h-1v7.223l2.858 4.262A1 1 0 0 1 18 16.004h-5v7a1 1 0 1 1-2 0v-7H6a1 1 0 0 1-.857-1.515L8 10.227V3.004Zm2 0v7.5a1 1 0 0 1-.143.514l-2.09 2.986h8.467l-2.092-2.986a1 1 0 0 1-.142-.514v-7.5h-4Z",
shapeRendering: "geometricPrecision"
}));
}
Tack.displayName = 'Tack';
export default createBaseComponent(Tack);