UNPKG

@metamask/design-system-react

Version:
7 lines 453 B
import * as React from "react"; import { forwardRef } from "react"; const SvgArrow2Right = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props }, React.createElement("path", { d: "M4 11h12.175l-5.6-5.6L12 4l8 8-8 8-1.425-1.4 5.6-5.6H4z" })); const ForwardRef = forwardRef(SvgArrow2Right); export default ForwardRef; //# sourceMappingURL=Arrow2Right.mjs.map