@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 898 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoGitlab = (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: "m21.668 9.994-.028-.071-2.722-7.105a.71.71 0 0 0-.704-.446.73.73 0 0 0-.41.153.73.73 0 0 0-.241.367l-1.838 5.624H8.28L6.443 2.892a.7.7 0 0 0-.241-.368.73.73 0 0 0-.833-.044.7.7 0 0 0-.28.337L2.36 9.918l-.027.072a5.055 5.055 0 0 0 1.677 5.842l.009.008.025.018 4.147 3.105 2.051 1.553 1.25.943a.84.84 0 0 0 1.017 0l1.25-.943 2.05-1.553 4.173-3.124.01-.008a5.06 5.06 0 0 0 1.675-5.837" }) }));
};
IconLogoGitlab.iconName = "logo-gitlab";
export default IconLogoGitlab;