UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.06 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoMacos = (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: "M11.294 14.141c0 1.682-.876 2.741-2.276 2.741s-2.277-1.064-2.277-2.74c0-1.69.877-2.748 2.277-2.748s2.276 1.059 2.276 2.747m1.953-5.935-.612.041c-.347.024-.5.147-.5.37 0 .236.194.365.465.365.37 0 .647-.24.647-.564zM22 12c0 5.582-4.418 10-10 10S2 17.582 2 12 6.418 2 12 2s10 4.418 10 10m-7.682-3.918c0 .812.447 1.306 1.176 1.306.618 0 1.006-.347 1.07-.84h-.482c-.064.27-.276.417-.588.417-.412 0-.665-.336-.665-.883 0-.54.253-.864.665-.864.33 0 .535.188.588.43h.483c-.065-.483-.442-.848-1.07-.848-.73-.006-1.177.488-1.177 1.282M7.594 6.847v2.494h.494v-1.53c0-.323.23-.582.53-.582.294 0 .482.177.482.46V9.34h.482V7.765c0-.3.206-.536.53-.536.323 0 .482.165.482.512v1.6h.494V7.618c0-.518-.294-.824-.8-.824-.347 0-.635.177-.759.447h-.04c-.113-.27-.348-.447-.689-.447-.335 0-.588.165-.694.447H8.07v-.4zm4.577 7.294c0-2.17-1.212-3.535-3.153-3.535S5.865 11.97 5.865 14.14s1.211 3.53 3.153 3.53c1.94 0 3.153-1.365 3.153-3.53m.306-4.759c.329 0 .6-.14.752-.394h.042v.353h.476V7.635c0-.523-.353-.835-.982-.835-.57 0-.97.276-1.024.694h.477c.053-.182.247-.282.523-.282.335 0 .512.153.512.43v.217l-.677.041c-.594.035-.929.294-.929.747-.006.447.347.735.83.735m5.394 6.23c0-.97-.565-1.536-1.989-1.847l-.758-.165c-.936-.206-1.3-.576-1.3-1.112 0-.694.658-1.111 1.511-1.111.894 0 1.483.458 1.56 1.211h.852c-.041-1.159-1.023-1.976-2.388-1.976-1.418 0-2.412.794-2.412 1.917 0 .971.594 1.595 1.965 1.895l.759.164c.947.206 1.329.589 1.329 1.16 0 .67-.677 1.158-1.6 1.158-.982 0-1.665-.447-1.765-1.182h-.853c.083 1.182 1.077 1.947 2.57 1.947 1.524 0 2.519-.794 2.519-2.06" }) })); }; IconLogoMacos.iconName = "logo-macos"; export default IconLogoMacos;