@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.1 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoFacebookColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { fill: "#0866FF", d: "M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.69 3.229 8.625 7.584 9.706v-6.65H7.522V12h2.062v-1.317c0-3.403 1.54-4.981 4.882-4.981.634 0 1.727.124 2.174.248v2.77a13 13 0 0 0-1.155-.037c-1.64 0-2.273.621-2.273 2.236V12h3.266l-.56 3.056h-2.706v6.87C18.164 21.33 22 17.114 22 12" }), _jsx("path", { fill: "#fff", d: "M15.917 15.056 16.478 12h-3.266v-1.08c0-1.616.633-2.237 2.273-2.237.509 0 .919.013 1.155.037V5.95c-.447-.124-1.54-.248-2.174-.248-3.342 0-4.882 1.578-4.882 4.981V12H7.522v3.056h2.062v6.65a10 10 0 0 0 3.627.22v-6.87z" })] }));
};
IconLogoFacebookColor.iconName = "logo-facebook--color";
export default IconLogoFacebookColor;