@metamask/design-system-react
Version:
Design system react ui components
7 lines • 406 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgAdd = (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 13H5v-2h6V5h2v6h6v2h-6v6h-2z" }));
const ForwardRef = forwardRef(SvgAdd);
export default ForwardRef;
//# sourceMappingURL=Add.mjs.map