UNPKG

@metamask/design-system-react

Version:
7 lines 540 B
import * as React from "react"; import { forwardRef } from "react"; const SvgFile = (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: "M6 22q-.824 0-1.412-.587C4 20.826 4 20.55 4 20V4q0-.824.588-1.412C5.176 1.999 5.45 2 6 2h8l6 6v12q0 .824-.587 1.413c-.587.589-.863.587-1.413.587zm7-13V4H6v16h12V9z" })); const ForwardRef = forwardRef(SvgFile); export default ForwardRef; //# sourceMappingURL=File.mjs.map