optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.56 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 ArrowRightDoubleIcon = /*#__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 || "arrow, right, double",
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: "M11.775 5.466a.9.9 0 0 1 1.182-.241l.077.05v.001l.005.003.013.01.053.04.194.146a55.801 55.801 0 0 1 2.79 2.253c.762.66 1.547 1.391 2.148 2.072.3.339.572.686.775 1.023.189.313.388.729.388 1.177 0 .448-.2.864-.388 1.177a7.281 7.281 0 0 1-.775 1.023c-.601.68-1.386 1.412-2.147 2.073a53.178 53.178 0 0 1-2.79 2.252l-.195.147-.053.039-.013.01c-.002 0-.003.002-.004.003h-.001a.9.9 0 0 1-1.069-1.449h.001l.003-.002.012-.01.048-.035c.042-.031.106-.078.187-.14a55.531 55.531 0 0 0 2.694-2.175c.738-.641 1.454-1.312 1.977-1.904.263-.298.46-.555.584-.762.082-.135.111-.215.122-.247a1.277 1.277 0 0 0-.122-.247 5.558 5.558 0 0 0-.584-.762c-.523-.592-1.239-1.263-1.977-1.904a51.337 51.337 0 0 0-2.694-2.176l-.187-.14-.048-.035-.012-.008-.003-.002v-.001l-.072-.059a.9.9 0 0 1-.119-1.2Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.775 5.466a.9.9 0 0 1 1.182-.241l.077.05v.001l.005.003.013.01.053.04.194.146a55.877 55.877 0 0 1 2.79 2.253c.762.66 1.547 1.391 2.148 2.072.3.339.572.686.775 1.023.189.313.388.729.388 1.177 0 .448-.2.864-.388 1.177a7.281 7.281 0 0 1-.775 1.023c-.601.68-1.386 1.412-2.148 2.073A53.144 53.144 0 0 1 6.3 18.524c-.083.064-.15.113-.195.147l-.053.039-.013.01c-.002 0-.003.002-.004.003h-.001l-.077.051a.9.9 0 0 1-.99-1.5l.002-.002.012-.01.048-.035c.042-.031.106-.078.186-.14a55.681 55.681 0 0 0 2.695-2.175c.738-.641 1.454-1.312 1.977-1.904.263-.298.46-.555.584-.762.082-.135.111-.215.122-.247a1.277 1.277 0 0 0-.122-.247 5.56 5.56 0 0 0-.584-.762c-.523-.59-1.239-1.262-1.977-1.903A51.331 51.331 0 0 0 5.215 6.91l-.186-.14-.048-.035-.012-.008-.003-.002v-.001l-.072-.059a.9.9 0 0 1-.119-1.2Z"
}));
});
export default ArrowRightDoubleIcon;