@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.4 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoLinkedinColor = (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: "M19.6354 3H4.36496C3.68248 3 3.08531 3.6 3 4.28571V19.7143C3 20.4 3.59717 21 4.36496 21H19.6354C20.3179 21 20.9151 20.4 21.0004 19.7143V4.28571C21.0004 3.6 20.4032 3 19.6354 3Z", fill: "#0A66C2" }), _jsx("path", { d: "M5.73054 18.3429H8.37515V9.77143H5.73054V18.3429Z", fill: "white" }), _jsx("path", { d: "M5.47461 7.02857C5.47461 7.88572 6.15709 8.57143 7.01019 8.57143C7.86329 8.57143 8.54577 7.88572 8.54577 7.02857C8.54577 6.17143 7.86329 5.48572 7.01019 5.48572C6.15709 5.48572 5.47461 6.17143 5.47461 7.02857Z", fill: "white" }), _jsx("path", { d: "M15.7118 18.3429H18.3564L18.2711 13.7143C18.2711 11.4 17.8445 9.6 15.1146 9.6C14.0909 9.51429 13.1525 10.1143 12.6406 10.9714V9.77143H10.0813V18.3429H12.726V14.0571C12.726 12.9429 12.9819 11.8286 14.3468 11.8286C15.7118 11.8286 15.7118 13.1143 15.7118 14.1429V18.3429Z", fill: "white" })] }));
};
IconLogoLinkedinColor.iconName = "logo-linkedin--color";
export default IconLogoLinkedinColor;