@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 928 B
JavaScript
const React = require("react");
function ForwardIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M10.594 9.444c1.875 1.136 1.875 3.976 0 5.112L7.219 16.6C5.344 17.736 3 16.316 3 14.044V9.955C3 7.684 5.344 6.264 7.219 7.4z"
}), /*#__PURE__*/React.createElement("path", {
d: "M19.594 9.444c1.875 1.136 1.875 3.976 0 5.112L16.219 16.6C14.344 17.736 12 16.316 12 14.044V9.955c0-2.271 2.344-3.691 4.219-2.555z"
}));
}
const ForwardRef = React.forwardRef(ForwardIcon);
module.exports = ForwardRef;