@metamask/design-system-react
Version:
Design system react ui components
7 lines • 553 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgQrCode = (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: "M3 11V3h8v8zm2-2h4V5H5zM3 21v-8h8v8zm2-2h4v-4H5zm8-8V3h8v8zm2-2h4V5h-4zm4 12v-2h2v2zm-6-6v-2h2v2zm2 2v-2h2v2zm-2 2v-2h2v2zm2 2v-2h2v2zm2-2v-2h2v2zm0-4v-2h2v2zm2 2v-2h2v2z" }));
const ForwardRef = forwardRef(SvgQrCode);
export default ForwardRef;
//# sourceMappingURL=QrCode.mjs.map