@metamask/design-system-react
Version:
Design system react ui components
7 lines • 449 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgCheck = (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: "m9.55 17.886-5.7-5.7 1.425-1.425 4.275 4.275 9.175-9.176 1.425 1.425z" }));
const ForwardRef = forwardRef(SvgCheck);
export default ForwardRef;
//# sourceMappingURL=Check.mjs.map