UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.89 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoChrome = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("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: "M12 22C17.5228 22 22 17.5228 22 12C22 10.5933 21.7095 9.25434 21.1853 8.03999H15.0526C15.2221 8.1707 15.3835 8.31243 15.5355 8.46446C15.9998 8.92876 16.3681 9.47995 16.6194 10.0866C16.8707 10.6932 17 11.3434 17 12C17 12.6566 16.8707 13.3068 16.6194 13.9134C16.5339 14.1198 16.4348 14.3198 16.323 14.5122L12 22Z" }), _jsx("path", { d: "M10.8377 21.9332C5.8624 21.3573 2 17.1297 2 12C2 10.1779 2.48734 8.46958 3.33879 6.99833L7.66584 14.493C7.8832 14.8709 8.15085 15.2219 8.46446 15.5355C9.40214 16.4732 10.6739 17 12 17C12.6529 17 13.2994 16.8721 13.9031 16.6236L10.8377 21.9332Z" }), _jsx("path", { d: "M12 2C8.71619 2 5.80207 3.58282 3.97895 6.02715L7.04422 11.3364C7.18897 10.2553 7.68461 9.24432 8.46446 8.46446C9.40214 7.52678 10.6739 7 12 7H20.6622C18.9331 4.01099 15.7014 2 12 2Z" }), _jsx("path", { d: "M13.5154 15.6586C13.035 15.8576 12.52 15.96 12 15.96C10.9497 15.96 9.94249 15.5428 9.19985 14.8001C8.4572 14.0575 8.03999 13.0502 8.03999 12C8.03999 10.9497 8.4572 9.94249 9.19985 9.19985C9.94249 8.4572 10.9497 8.03999 12 8.03999C12.52 8.03999 13.035 8.14242 13.5154 8.34143C13.9959 8.54044 14.4324 8.83213 14.8001 9.19985C15.1679 9.56757 15.4595 10.0041 15.6586 10.4846C15.8576 10.965 15.96 11.48 15.96 12C15.96 12.52 15.8576 13.035 15.6586 13.5154C15.4595 13.9959 15.1679 14.4324 14.8001 14.8001C14.4324 15.1679 13.9959 15.4595 13.5154 15.6586Z" })] })); }; IconLogoChrome.iconName = "logo-chrome"; export default IconLogoChrome;