optimall-icons
Version:
Biblioteca de ícones do Optimall
33 lines • 1.88 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 CircleArrowMoveDownRightIcon = /*#__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 || "circle, arrow, move, down, right",
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: "M9.18 1.471C3.363 3.03-.087 9.006 1.471 14.821c1.558 5.815 7.535 9.266 13.35 7.708 5.814-1.558 9.265-7.535 7.707-13.35-1.558-5.815-7.535-9.266-13.35-7.708ZM3.21 14.355a9.1 9.1 0 1 1 17.58-4.71 9.1 9.1 0 0 1-17.58 4.71Z",
fillRule: "evenodd",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.503 10.425a.9.9 0 0 0 1.13.583c2.036-.649 3.12-.711 4.347 0 .63.365 1.034.77 1.343 1.283.084.14.162.29.237.454a5.15 5.15 0 0 0-.266-.128.9.9 0 0 0-.729 1.646c.14.062.309.153.512.269l.15.085c.153.088.321.185.477.268.203.108.457.232.71.302.157.043.537.127.912-.045.336-.101.558-.337.652-.442.165-.185.309-.41.423-.6.107-.177.195-.334.274-.474.124-.22.225-.401.34-.56a.9.9 0 0 0-1.457-1.057 5.054 5.054 0 0 0-.216.328 6.7 6.7 0 0 0-.477-.973c-.477-.794-1.11-1.407-1.982-1.913-1.901-1.103-3.619-.852-5.796-.157a.9.9 0 0 0-.584 1.13Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default CircleArrowMoveDownRightIcon;