@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
17 lines (15 loc) • 839 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const ArrowRight = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 32 32",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "currentColor"
}, /*#__PURE__*/ React.createElement("path", {
d: "M10.9997 30C10.4879 30 9.97594 29.7722 9.58594 29.3165C8.80469 28.4051 8.80469 26.9286 9.58594 26.0172L18.1747 16.0009L9.58594 5.98281C8.80469 5.07141 8.80469 3.59495 9.58594 2.68355C10.3672 1.77215 11.6328 1.77215 12.4141 2.68355L22.4141 14.3495C23.1953 15.2609 23.1953 16.7373 22.4141 17.6487L12.4141 29.3146C12.0234 29.774 11.5116 30 10.9997 30Z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(ArrowRight);
export default ForwardRef;