@metamask/design-system-react
Version:
Design system react ui components
7 lines • 463 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgCode = (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: "m8 18-6-6 6-6 1.425 1.425-4.6 4.6L9.4 16.6zm8 0-1.425-1.425 4.6-4.6L14.6 7.4 16 6l6 6z" }));
const ForwardRef = forwardRef(SvgCode);
export default ForwardRef;
//# sourceMappingURL=Code.mjs.map