@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.14 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoAppleMusic = (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", { fillRule: "evenodd", d: "M21 7.985q0-.271-.008-.542a8 8 0 0 0-.105-1.183 4 4 0 0 0-.37-1.125 3.8 3.8 0 0 0-.694-.957 3.8 3.8 0 0 0-.958-.695c-.36-.183-.727-.3-1.122-.37a8 8 0 0 0-1.183-.106L16.015 3h-8.03q-.271 0-.543.007c-.394.01-.792.035-1.182.106a4 4 0 0 0-1.122.372 3.766 3.766 0 0 0-1.655 1.653c-.183.36-.3.727-.37 1.125-.07.39-.093.787-.106 1.182L3 7.985v8.029q0 .271.007.542c.01.395.035.793.105 1.183.07.395.188.765.37 1.125a3.8 3.8 0 0 0 .696.957c.28.28.604.515.957.695.36.183.728.3 1.123.37.39.07.787.093 1.182.105q.271.008.542.008.322.002.645 0h7.383q.271 0 .542-.008c.396-.01.793-.035 1.183-.105.395-.07.765-.187 1.123-.37a3.756 3.756 0 0 0 1.652-1.653c.182-.36.3-.727.37-1.124.07-.39.093-.788.105-1.183q.008-.271.008-.543.002-.323 0-.645V8.63q.009-.322.007-.645m-4.823 6.728c0 .228-.002.435-.05.663q-.069.336-.262.617c-.13.188-.297.34-.492.455a2 2 0 0 1-.625.228c-.415.083-.698.103-.965.05a1.35 1.35 0 0 1-.65-.33 1.43 1.43 0 0 1-.455-.89c-.04-.393.09-.81.382-1.12.147-.155.335-.278.585-.375.26-.1.548-.163.99-.25q.174-.036.35-.07c.152-.03.285-.07.39-.2.107-.13.107-.29.107-.445V9.08c0-.302-.134-.385-.425-.33-.207.04-4.655.938-4.655.938-.25.06-.34.143-.34.455v5.808c0 .227-.012.435-.06.663q-.069.335-.262.617c-.13.188-.297.34-.492.455a2 2 0 0 1-.625.23c-.415.083-.698.103-.965.05a1.36 1.36 0 0 1-.65-.332 1.424 1.424 0 0 1-.073-2.01c.147-.155.335-.278.585-.376.26-.1.548-.162.99-.25q.174-.034.35-.07c.152-.03.285-.07.39-.2s.117-.282.117-.437V7.595c0-.09.008-.15.013-.18a.55.55 0 0 1 .18-.347.8.8 0 0 1 .332-.15h.003l5.355-1.085c.047-.01.432-.078.477-.083.29-.025.453.165.453.473z", clipRule: "evenodd" }) }));
};
IconLogoAppleMusic.iconName = "logo-apple-music";
export default IconLogoAppleMusic;