UNPKG

@metamask/design-system-react

Version:
7 lines 491 B
import * as React from "react"; import { forwardRef } from "react"; const SvgCategory = (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 11V3h8v8zm0 10v-8h8v8zm10-10V3h8v8zm0 10v-8h8v8zM5 9h4V5H5zm10 0h4V5h-4zm0 10h4v-4h-4zM5 19h4v-4H5z" })); const ForwardRef = forwardRef(SvgCategory); export default ForwardRef; //# sourceMappingURL=Category.mjs.map