@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 910 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const RotateArrowIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M10.849 14C6.422 13.78 3 12.303 3 10.514 3 8.574 7.03 7 12 7s9 1.573 9 3.514c0 1.38-2.037 2.574-5 3.15",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12.38 13.91 10.42 16M12.38 13.91 10.42 12"
}));
const ForwardRef = forwardRef(RotateArrowIcon);
module.exports = ForwardRef;