@metamask/design-system-react
Version:
Design system react ui components
7 lines • 446 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgArrowUp = (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: "m22 16.113-1.775 1.775L12 9.661l-8.225 8.225L2 16.113l10-10z" }));
const ForwardRef = forwardRef(SvgArrowUp);
export default ForwardRef;
//# sourceMappingURL=ArrowUp.mjs.map