@metamask/design-system-react
Version:
Design system react ui components
7 lines • 442 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgFlash = (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: "m12 15.486 3.2-4.6h-2.85l2-7H9v8h3zm-2 6.4v-8H7v-12h10l-2 7h4z" }));
const ForwardRef = forwardRef(SvgFlash);
export default ForwardRef;
//# sourceMappingURL=Flash.mjs.map