@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 818 B
JavaScript
import * as React from "react";
function ForwardIcon({
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: "M9.594 14.556c1.875-1.136 1.875-3.976 0-5.112L6.219 7.4C4.344 6.264 2 7.684 2 9.955v4.09c0 2.271 2.344 3.691 4.219 2.555zM20.594 14.556c1.875-1.136 1.875-3.976 0-5.112L17.219 7.4C15.344 6.264 13 7.684 13 9.955v4.09c0 2.271 2.344 3.691 4.219 2.555z"
}));
}
const ForwardRef = React.forwardRef(ForwardIcon);
export default ForwardRef;