UNPKG

@metamask/design-system-react

Version:
7 lines 467 B
import * as React from "react"; import { forwardRef } from "react"; const SvgExpand = (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 21v-6h2v2.6l3.1-3.1 1.4 1.4L6.4 19H9v2zM15.9 9.5l-1.4-1.4L17.6 5H15V3h6v6h-2V6.4z" })); const ForwardRef = forwardRef(SvgExpand); export default ForwardRef; //# sourceMappingURL=Expand.mjs.map