@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 728 B
JavaScript
const React = require("react");
function ChevronRightIcon({
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: "M8.523 17.42a.75.75 0 0 0 .954 1.16l5.092-4.191a3.213 3.213 0 0 0 0-4.978l-4.85-3.99a.75.75 0 0 0-.952 1.158l4.85 3.99a1.714 1.714 0 0 1 0 2.661z"
}));
}
const ForwardRef = React.forwardRef(ChevronRightIcon);
module.exports = ForwardRef;