UNPKG

@metamask/design-system-react

Version:
7 lines 445 B
import * as React from "react"; import { forwardRef } from "react"; const SvgArrow2Up = (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: "M11 20V7.825l-5.6 5.6L4 12l8-8 8 8-1.4 1.425-5.6-5.6V20z" })); const ForwardRef = forwardRef(SvgArrow2Up); export default ForwardRef; //# sourceMappingURL=Arrow2Up.mjs.map