UNPKG

@metamask/design-system-react

Version:
7 lines 420 B
import * as React from "react"; import { forwardRef } from "react"; const SvgChart = (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 20v-7h4v7zm-6 0V4h4v16zm-6 0V9h4v11z" })); const ForwardRef = forwardRef(SvgChart); export default ForwardRef; //# sourceMappingURL=Chart.mjs.map