@metamask/design-system-react
Version:
Design system react ui components
7 lines • 520 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgExpandVertical = (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: "M4 22v-2h16v2zm8-3-4-4 1.4-1.4 1.6 1.55v-6.3L9.4 10.4 8 9l4-4 4 4-1.4 1.4L13 8.85v6.3l1.6-1.55L16 15zM4 4V2h16v2z" }));
const ForwardRef = forwardRef(SvgExpandVertical);
export default ForwardRef;
//# sourceMappingURL=ExpandVertical.mjs.map