@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 806 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ChevronRightIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8.42 18.477a.75.75 0 0 1 .103-1.056l5.093-4.19a1.714 1.714 0 0 0 0-2.661l-4.85-3.99a.75.75 0 1 1 .954-1.16l4.85 3.991a3.213 3.213 0 0 1 0 4.978l-5.093 4.19a.75.75 0 0 1-1.056-.102",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ChevronRightIcon);
module.exports = ForwardRef;