@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 871 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const EnterArrowIcon = ({
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", {
d: "M19 6.25a.75.75 0 0 1 .75.75v5A3.75 3.75 0 0 1 16 15.75H7.659l.74.744c.277.278.232.73-.102 1.01-.334.279-.83.279-1.106 0l-2.11-2.12a.62.62 0 0 1-.175-.516.61.61 0 0 1 .156-.474l2.11-2.324c.263-.288.755-.305 1.1-.038.344.268.41.719.148 1.008L7.32 14.25H16A2.25 2.25 0 0 0 18.25 12V7a.75.75 0 0 1 .75-.75"
}));
const ForwardRef = forwardRef(EnterArrowIcon);
export default ForwardRef;