UNPKG

@metamask/design-system-react

Version:
7 lines 515 B
import * as React from "react"; import { forwardRef } from "react"; const SvgSwapVertical = (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: "M8 13V5.825L5.425 8.4 4 7l5-5 5 5-1.425 1.4L10 5.825V13zm7 9-5-5 1.425-1.4L14 18.175V11h2v7.175l2.575-2.575L20 17z" })); const ForwardRef = forwardRef(SvgSwapVertical); export default ForwardRef; //# sourceMappingURL=SwapVertical.mjs.map