UNPKG

@metamask/design-system-react

Version:
7 lines 394 B
import * as React from "react"; import { forwardRef } from "react"; const SvgMinus = (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: "M5 13v-2h14v2z" })); const ForwardRef = forwardRef(SvgMinus); export default ForwardRef; //# sourceMappingURL=Minus.mjs.map