@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 692 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconThumbDownFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M16 4H8.055a4 4 0 0 0-3.859 2.948L2.69 12.474A2 2 0 0 0 4.619 15H10v3.695a2.305 2.305 0 0 0 4.506.687L16 14.6zM17.5 4v9H19a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z" }) }));
};
IconThumbDownFilled.iconName = "thumb-down--filled";
export default IconThumbDownFilled;