@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.23 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoLinkedin = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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: "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 3ZM8.37452 18.3429H5.72992V9.77143H8.37452V18.3429ZM7.00957 8.57143C6.15647 8.57143 5.47399 7.88571 5.47399 7.02857C5.47399 6.17143 6.15647 5.48571 7.00957 5.48571C7.86267 5.48571 8.54515 6.17143 8.54515 7.02857C8.54515 7.88571 7.86267 8.57143 7.00957 8.57143ZM18.3558 18.3429H15.7112V14.1429C15.7112 13.1143 15.7112 11.8286 14.3462 11.8286C12.9813 11.8286 12.7253 12.9429 12.7253 14.0571V18.3429H10.0807V9.77143H12.64V10.9714C13.1519 10.1143 14.0903 9.51429 15.114 9.6C17.8439 9.6 18.2705 11.4 18.2705 13.7143L18.3558 18.3429Z" }) }));
};
IconLogoLinkedin.iconName = "logo-linkedin";
export default IconLogoLinkedin;