@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.31 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 LinkExternal({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LinkExternal",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M14.388 1.079a.998.998 0 0 0-.39-.079H9.75a1.001 1.001 0 1 0 0 2.003h1.83L5.298 9.29a1.001 1.001 0 0 0 1.416 1.416l6.284-6.288v1.83a1.001 1.001 0 1 0 2.003 0V2.002a.997.997 0 0 0-.612-.922Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M1 5a1 1 0 0 1 1-1h4v2H3v7h7v-3h2v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V5Z",
shapeRendering: "geometricPrecision"
}));
}
LinkExternal.displayName = 'LinkExternal';
export default createBaseComponent(LinkExternal);