UNPKG

@metamask/design-system-react

Version:
7 lines 450 B
import * as React from "react"; import { forwardRef } from "react"; const SvgTrendUp = (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: "M3.4 18 2 16.6l7.4-7.45 4 4L18.6 8H16V6h6v6h-2V9.4L13.4 16l-4-4z" })); const ForwardRef = forwardRef(SvgTrendUp); export default ForwardRef; //# sourceMappingURL=TrendUp.mjs.map