@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 848 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ArrowRightBorderIcon = ({
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: "M11.755 6.035c-1.34-.871-2.762-1.068-3.888-.335-1.09.71-1.617 2.114-1.617 3.794v5.013c0 1.68.527 3.084 1.617 3.793 1.126.734 2.548.537 3.888-.334l3.86-2.507c1.35-.878 2.135-2.116 2.135-3.459s-.785-2.58-2.135-3.458z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ArrowRightBorderIcon);
module.exports = ForwardRef;