@metamask/design-system-react
Version:
Design system react ui components
7 lines • 519 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgSwapHorizontal = (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: "m7 20-5-5 5-5 1.4 1.425L5.825 14H13v2H5.825L8.4 18.575zm10-6-1.4-1.425L18.175 10H11V8h7.175L15.6 5.425 17 4l5 5z" }));
const ForwardRef = forwardRef(SvgSwapHorizontal);
export default ForwardRef;
//# sourceMappingURL=SwapHorizontal.mjs.map