@metamask/design-system-react
Version:
Design system react ui components
7 lines • 485 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgCandlestick = (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 4H7v2H5v12h2v2h2v-2h2V6H9zm0 12H7V8h2zM19 8h-2V4h-2v4h-2v7h2v5h2v-5h2zm-2 5h-2v-3h2z" }));
const ForwardRef = forwardRef(SvgCandlestick);
export default ForwardRef;
//# sourceMappingURL=Candlestick.mjs.map