@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 831 B
JavaScript
import * as React from "react";
function NextIcon({
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: "M11.406 9.444c-1.875 1.136-1.875 3.976 0 5.112l3.375 2.044C16.656 17.736 19 16.316 19 14.044V9.955c0-2.271-2.344-3.691-4.219-2.555z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M5 9v7"
}));
}
const ForwardRef = React.forwardRef(NextIcon);
export default ForwardRef;