UNPKG

@metamask/design-system-react

Version:
7 lines 547 B
import * as React from "react"; import { forwardRef } from "react"; const SvgUpload = (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 16V7.85l-2.6 2.6L7 9l5-5 5 5-1.4 1.45-2.6-2.6V16zm-5 4q-.824 0-1.412-.587C4 18.826 4 18.55 4 18v-3h2v3h12v-3h2v3q0 .824-.587 1.413c-.587.589-.863.587-1.413.587z" })); const ForwardRef = forwardRef(SvgUpload); export default ForwardRef; //# sourceMappingURL=Upload.mjs.map