@metamask/design-system-react
Version:
Design system react ui components
7 lines • 589 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgThumbUpFilled = (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 21H8V8l7-7 1.25 1.25q.175.175.288.475c.113.3.112.392.112.575v.35L15.55 8H21q.8 0 1.4.6c.6.6.6.867.6 1.4v2a2 2 0 0 1-.15.75l-3 7.05q-.225.5-.75.85c-.525.35-.717.35-1.1.35M6 8v13H2V8z" }));
const ForwardRef = forwardRef(SvgThumbUpFilled);
export default ForwardRef;
//# sourceMappingURL=ThumbUpFilled.mjs.map