UNPKG

@metamask/design-system-react

Version:
7 lines 475 B
import * as React from "react"; import { forwardRef } from "react"; const SvgArrowDoubleLeft = (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: "m17.7 4.886-5 7 5 7h-2.45l-5-7 5-7zm-5.95 0-5 7 5 7H9.3l-5-7 5-7z" })); const ForwardRef = forwardRef(SvgArrowDoubleLeft); export default ForwardRef; //# sourceMappingURL=ArrowDoubleLeft.mjs.map