UNPKG

@metamask/design-system-react

Version:
7 lines 424 B
import * as React from "react"; import { forwardRef } from "react"; const SvgCollapse = (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: "M11 13v6H9v-4H5v-2zm4-8v4h4v2h-6V5z" })); const ForwardRef = forwardRef(SvgCollapse); export default ForwardRef; //# sourceMappingURL=Collapse.mjs.map