@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 845 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconThumbUpFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M8 20H15.9448C17.7486 20 19.3293 18.7927 19.8039 17.0525L21.311 11.5262C21.658 10.254 20.7002 9 19.3815 9H14V5.30522C14 4.03208 12.9679 3 11.6948 3C10.6865 3 9.79523 3.65526 9.49449 4.61763L8 9.4V20Z" }), _jsx("path", { d: "M6.5 20V11H5C3.89543 11 3 11.8954 3 13V18C3 19.1046 3.89543 20 5 20H6.5Z" })] }));
};
IconThumbUpFilled.iconName = "thumb-up--filled";
export default IconThumbUpFilled;