UNPKG

@metamask/design-system-react

Version:
7 lines 469 B
import * as React from "react"; import { forwardRef } from "react"; const SvgClose = (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.4 19 5 17.6l5.6-5.6L5 6.4 6.4 5l5.6 5.6L17.6 5 19 6.4 13.4 12l5.6 5.6-1.4 1.4-5.6-5.6z" })); const ForwardRef = forwardRef(SvgClose); export default ForwardRef; //# sourceMappingURL=Close.mjs.map