@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.74 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 Attach({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Attach",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M14.733 7.936a1.003 1.003 0 0 0-1.412 0l-4.127 3.992a3.653 3.653 0 0 1-5.109 0 3.563 3.563 0 0 1-.827-3.887c.172-.423.426-.808.747-1.133l1.803-1.766 1.563-1.547a2.098 2.098 0 0 1 2.945 0 1.995 1.995 0 0 1 .621 1.467 1.93 1.93 0 0 1-.591 1.397L9.134 7.657 7.852 8.934a.542.542 0 0 1-.888-.568.469.469 0 0 1 .106-.16l1.673-1.647a.997.997 0 0 0-.702-1.707 1.001 1.001 0 0 0-.71.29L5.668 6.788a2.455 2.455 0 0 0-.741 1.767 2.527 2.527 0 0 0 .751 1.796 2.6 2.6 0 0 0 1.813.739 2.5 2.5 0 0 0 1.773-.729l1.002-.928.35-.35.371-.368.851-.829a3.99 3.99 0 0 0 1.183-2.824 4.091 4.091 0 0 0-.688-2.277 4.113 4.113 0 0 0-1.84-1.515 4.131 4.131 0 0 0-4.484.868l-.311.309-3.055 2.994A5.458 5.458 0 0 0 1.02 9.323a5.532 5.532 0 0 0 1.673 3.992A5.69 5.69 0 0 0 6.7 14.952a5.58 5.58 0 0 0 3.926-1.567l4.117-4.062a.996.996 0 0 0-.01-1.387Z",
shapeRendering: "geometricPrecision"
}));
}
Attach.displayName = 'Attach';
export default createBaseComponent(Attach);