@metamask/design-system-react
Version:
Design system react ui components
7 lines • 448 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgKeepFilled = (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: "m16 12 2 2v2h-5v6l-1 1-1-1v-6H6v-2l2-2V5H7V3h10v2h-1z" }));
const ForwardRef = forwardRef(SvgKeepFilled);
export default ForwardRef;
//# sourceMappingURL=KeepFilled.mjs.map