UNPKG

797 BJavaScriptView Raw
1import * as React from "react";
2function ForwardIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/React.createElement("svg", Object.assign({
8 xmlns: "http://www.w3.org/2000/svg",
9 viewBox: "0 0 24 24",
10 fill: "currentColor",
11 "aria-hidden": "true",
12 ref: svgRef,
13 "aria-labelledby": titleId
14 }, props), title ? /*#__PURE__*/React.createElement("title", {
15 id: titleId
16 }, title) : null, /*#__PURE__*/React.createElement("path", {
17 d: "M5.055 7.06c-1.25-.714-2.805.189-2.805 1.628v8.123c0 1.44 1.555 2.342 2.805 1.628L12 14.471v2.34c0 1.44 1.555 2.342 2.805 1.628l7.108-4.061c1.26-.72 1.26-2.536 0-3.256L14.805 7.06C13.555 6.346 12 7.25 12 8.688v2.34L5.055 7.06z"
18 }));
19}
20const ForwardRef = React.forwardRef(ForwardIcon);
21export default ForwardRef;
\No newline at end of file