optimall-icons
Version:
Biblioteca de ícones do Optimall
31 lines • 1.72 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 LinkIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "link",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M19.99 3.81A6.128 6.128 0 0 0 15.63 2c-1.64 0-3.2.64-4.37 1.81L8.65 6.42a.9.9 0 0 0 0 1.27.9.9 0 0 0 1.27 0l2.61-2.61c.83-.83 1.92-1.28 3.09-1.28s2.27.46 3.09 1.28a4.364 4.364 0 0 1 0 6.18l-2.61 2.61a.9.9 0 0 0 0 1.27c.18.18.41.26.64.26.23 0 .46-.09.64-.26l2.61-2.61a6.174 6.174 0 0 0 0-8.73v.01Z"
}), /*#__PURE__*/React.createElement("path", {
d: "m10.03 15.04 5-5a.9.9 0 0 0 0-1.27.9.9 0 0 0-1.27 0l-5 5a.9.9 0 0 0 0 1.27c.18.18.41.26.64.26.23 0 .46-.09.64-.26h-.01Z"
}), /*#__PURE__*/React.createElement("path", {
d: "m11.26 18.72 2.61-2.61.01.01a.9.9 0 0 1 1.27 0 .9.9 0 0 1 0 1.27L12.54 20a6.094 6.094 0 0 1-4.36 1.81c-1.65 0-3.2-.64-4.37-1.81a6.174 6.174 0 0 1 0-8.73l2.61-2.61a.9.9 0 0 1 1.27 0 .9.9 0 0 1 0 1.27l-2.61 2.61a4.364 4.364 0 0 0 0 6.18A4.35 4.35 0 0 0 8.17 20c1.17 0 2.26-.45 3.09-1.28Z"
}));
});
export default LinkIcon;