sebikostudio-icons
Version:
A collection of icon components
29 lines • 1.27 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const OpeninNewWindowIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "open in new window, new window, box in, arrow up right, open, open in",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V4.5C16.5 3.94771 16.0523 3.5 15.5 3.5H4.50002C3.94774 3.5 3.50003 3.94771 3.50002 4.5L3.5 7.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.5 7.5L12.5 12.5M12.5 7.5H7.49997M12.5 7.5L3.5 16.4998",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default OpeninNewWindowIcon;