UNPKG

@metamask/design-system-react

Version:
7 lines 455 B
import * as React from "react"; import { forwardRef } from "react"; const SvgTrendDown = (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 18v-2h2.6l-5.2-5.15-4 4L2 7.4 3.4 6l6 6 4-4 6.6 6.6V12h2v6z" })); const ForwardRef = forwardRef(SvgTrendDown); export default ForwardRef; //# sourceMappingURL=TrendDown.mjs.map