@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 876 B
JavaScript
const React = require("react");
function ArrowExchangeIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M12.53 8.47a.75.75 0 0 1-1.06 1.06L8.75 6.81V19a.75.75 0 0 1-1.5 0V6.81L4.53 9.53a.75.75 0 0 1-1.06-1.06l3.293-3.293a1.75 1.75 0 0 1 2.474 0zM16.75 5a.75.75 0 0 0-1.5 0v12.19l-2.72-2.72a.75.75 0 1 0-1.06 1.06l3.293 3.293a1.75 1.75 0 0 0 2.474 0l3.293-3.293a.75.75 0 1 0-1.06-1.06l-2.72 2.72z"
}));
}
const ForwardRef = React.forwardRef(ArrowExchangeIcon);
module.exports = ForwardRef;