@metamask/design-system-react
Version:
Design system react ui components
7 lines • 455 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgArrowLeft = (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: "m15.112 21.886-10-10 10-10 1.775 1.775-8.225 8.224 8.225 8.226z" }));
const ForwardRef = forwardRef(SvgArrowLeft);
export default ForwardRef;
//# sourceMappingURL=ArrowLeft.mjs.map