@metamask/design-system-react
Version:
Design system react ui components
7 lines • 415 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgSort = (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 18v-2h6v2zm0-5v-2h12v2zm0-5V6h18v2z" }));
const ForwardRef = forwardRef(SvgSort);
export default ForwardRef;
//# sourceMappingURL=Sort.mjs.map