@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.79 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoWechat = (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", { fillRule: "evenodd", d: "M20.71 18.824a5.2 5.2 0 0 0 1.651-1.79c.398-.719.617-1.52.639-2.34 0-3.016-2.967-5.462-6.627-5.462s-6.626 2.446-6.626 5.462c0 3.017 2.967 5.463 6.626 5.463a8 8 0 0 0 2.164-.299l.194-.029a.7.7 0 0 1 .352.101l1.451.83.128.04a.22.22 0 0 0 .156-.064.22.22 0 0 0 .064-.155l-.035-.16-.299-1.101-.023-.14a.43.43 0 0 1 .185-.356M8.952 3.2C4.56 3.2 1 6.135 1 9.756a6.1 6.1 0 0 0 .767 2.807 6.2 6.2 0 0 0 1.98 2.148.52.52 0 0 1 .223.428l-.028.167-.358 1.322-.043.191a.267.267 0 0 0 .265.263l.154-.049 1.74-.995a.84.84 0 0 1 .422-.12l.234.034c.844.24 1.718.36 2.596.36l.436-.01a5 5 0 0 1-.266-1.607c0-3.302 3.246-5.98 7.251-5.98l.433.012c-.6-3.132-3.888-5.527-7.854-5.527m5.212 10.621a.89.89 0 0 1-.816-.54.865.865 0 0 1 .191-.953.89.89 0 0 1 .963-.19c.162.067.3.18.397.323a.868.868 0 0 1-.397 1.293.9.9 0 0 1-.338.067m4.419 0a.877.877 0 0 1-.868-1.044.887.887 0 0 1 1.205-.638c.161.066.3.178.396.322a.87.87 0 0 1-.11 1.104.9.9 0 0 1-.623.256M6.3 8.707c-.21 0-.415-.062-.589-.177a1.039 1.039 0 0 1-.16-1.614 1.06 1.06 0 0 1 1.156-.227 1.041 1.041 0 0 1 0 1.938 1.1 1.1 0 0 1-.407.08m5.301 0c-.21 0-.414-.062-.589-.177a1.05 1.05 0 0 1-.45-1.077c.041-.204.142-.39.29-.537a1.06 1.06 0 0 1 1.156-.227 1.041 1.041 0 0 1-.001 1.938 1.1 1.1 0 0 1-.406.08", clipRule: "evenodd" }) }));
};
IconLogoWechat.iconName = "logo-wechat";
export default IconLogoWechat;