@metamask/design-system-react
Version:
Design system react ui components
7 lines • 453 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgArrowRight = (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: "m8.887 22-1.775-1.775L15.337 12 7.112 3.775 8.887 2l10 10z" }));
const ForwardRef = forwardRef(SvgArrowRight);
export default ForwardRef;
//# sourceMappingURL=ArrowRight.mjs.map