@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.2 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 LinkAltBroken({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LinkAltBroken",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2 12a5 5 0 0 1 5-5l2-1.5V3L6.5 5C5 5 3.363 5.737 2.05 7.05A7 7 0 0 0 7 19h3l1-2H7a5 5 0 0 1-5-5Zm15-7h-3l-1 2h4a5 5 0 1 1 0 10l-2 1.5V21l2.5-2c1.5 0 3.137-.738 4.45-2.05A7 7 0 0 0 17 5Z",
shapeRendering: "geometricPrecision"
}));
}
LinkAltBroken.displayName = 'LinkAltBroken';
export default createBaseComponent(LinkAltBroken);