UNPKG

@metamask/design-system-react

Version:
7 lines 504 B
import * as React from "react"; import { forwardRef } from "react"; const SvgHashTag = (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: "m6 20 1-4H3l.5-2h4l1-4h-4L5 8h4l1-4h2l-1 4h4l1-4h2l-1 4h4l-.5 2h-4l-1 4h4l-.5 2h-4l-1 4h-2l1-4H9l-1 4zm3.5-6h4l1-4h-4z" })); const ForwardRef = forwardRef(SvgHashTag); export default ForwardRef; //# sourceMappingURL=HashTag.mjs.map