UNPKG

@metamask/design-system-react

Version:
7 lines 531 B
import * as React from "react"; import { forwardRef } from "react"; const SvgPlusAndMinus = (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", { fillRule: "evenodd", d: "M7 4.252H5v3H2v2h3v3h2v-3h3v-2H7zm11 1 1.06 1.06L5.627 19.749l-1.061-1.06zm4 11v-2h-8v2z", clipRule: "evenodd" })); const ForwardRef = forwardRef(SvgPlusAndMinus); export default ForwardRef; //# sourceMappingURL=PlusAndMinus.mjs.map