@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.95 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoQtColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M7.82553 9.13856C8.12356 8.59704 8.66543 8.3298 9.45115 8.3298C10.2369 8.3298 10.7787 8.59704 11.07 9.13856C11.3613 9.68007 11.5035 10.5451 11.5035 11.7406C11.5035 12.9292 11.3613 13.7801 11.0836 14.2794C10.7991 14.7788 10.2572 15.0319 9.45115 15.0319C8.64511 15.0319 8.09647 14.7717 7.81198 14.2654C7.5275 13.759 7.38525 12.9081 7.38525 11.7266C7.38525 10.5381 7.53427 9.68007 7.82553 9.13856Z", fill: "#2CDE85" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M22 4.5V16.675L19.2256 19.5H2V7.32509L4.77437 4.5H22ZM15.1288 15.5852C15.3947 15.9184 15.8855 16.085 16.6012 16.085C16.9011 16.085 17.3306 16.0294 17.8895 15.9184L17.8282 14.7938L16.7921 14.8355C16.4853 14.8355 16.2876 14.7522 16.2127 14.5787C16.1377 14.4121 16.0968 14.065 16.0968 13.5375V10.6985H17.8419V9.49771H16.0968V7.62357H14.7267V9.49771H13.7587V10.6916H14.7267V13.6902C14.7267 14.6203 14.863 15.252 15.1288 15.5852ZM11.3524 18.0493L12.6544 17.4315L11.5978 15.6893C12.0886 15.3561 12.4362 14.8702 12.6544 14.2317C12.8657 13.5999 12.9748 12.767 12.9748 11.7328C12.9748 10.1641 12.7157 9.00488 12.1909 8.25522C11.6728 7.49863 10.7594 7.12373 9.4574 7.12373C8.15542 7.12373 7.24199 7.5055 6.71711 8.26216C6.19223 9.01876 5.92638 10.1779 5.92638 11.7397C5.92638 13.2946 6.18541 14.4399 6.70348 15.1617C7.22154 15.8837 8.14179 16.2446 9.4574 16.2446C9.81186 16.2446 10.0641 16.2168 10.2277 16.1682L11.3524 18.0493Z", fill: "#2CDE85" })] }));
};
IconLogoQtColor.iconName = "logo-qt--color";
export default IconLogoQtColor;