@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.66 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Attach",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M21.738 11.005a1.002 1.002 0 0 0-1.421 0l-2.112 2.056-5.655 5.501a5.102 5.102 0 0 1-7.087 0A4.713 4.713 0 0 1 4 15.153a4.702 4.702 0 0 1 1.463-3.41L8.996 8.33l3.534-3.434a3.087 3.087 0 0 1 4.264 0 2.825 2.825 0 0 1 .642 3.143c-.149.35-.368.667-.642.93l-5.005 4.812a1 1 0 0 1-1.431 0 .92.92 0 0 1-.207-1.016.92.92 0 0 1 .207-.301l2.852-2.776a1 1 0 0 0 .015-1.412 1.001 1.001 0 0 0-1.416-.015l-2.843 2.765a2.895 2.895 0 0 0-.89 2.096 2.849 2.849 0 0 0 .89 2.087 3.007 3.007 0 0 0 4.224 0l4.995-4.882a4.803 4.803 0 0 0 1.48-3.464 4.791 4.791 0 0 0-1.48-3.464 5.082 5.082 0 0 0-7.007 0l-1.41 1.377-5.706 5.551A6.728 6.728 0 0 0 2 15.168a6.714 6.714 0 0 0 2.062 4.842 7.126 7.126 0 0 0 9.879 0l5.665-5.51 2.072-2.087a.997.997 0 0 0 .06-1.408Z",
shapeRendering: "geometricPrecision"
}));
}
Attach.displayName = 'Attach';
export default createBaseComponent(Attach);