UNPKG

@metamask/design-system-react

Version:
7 lines 633 B
import * as React from "react"; import { forwardRef } from "react"; const SvgThumbUp = (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: "M18 21H7V8l7-7 1.25 1.25q.175.175.288.475c.112.3.112.392.112.575v.35L14.55 8H21q.8 0 1.4.6c.6.6.6.867.6 1.4v2q0 .175-.05.375c-.05.2-.067.258-.1.375l-3 7.05q-.225.5-.75.85c-.525.35-.717.35-1.1.35m-9-2h9l3-7v-2h-9l1.35-5.5L9 8.85zM7 8v2H4v9h3v2H2V8z" })); const ForwardRef = forwardRef(SvgThumbUp); export default ForwardRef; //# sourceMappingURL=ThumbUp.mjs.map