UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 1.42 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSpeakerFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": return (_jsxs("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: "M12 8.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M14.5 15a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0" }), _jsx("path", { fillRule: "evenodd", d: "M4 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm8 6a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m4 5a4 4 0 1 1-8 0 4 4 0 0 1 8 0", clipRule: "evenodd" })] })); default: return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M10 15a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M11 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0" }), _jsx("path", { fillRule: "evenodd", d: "M4 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm6 12a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m2-10a2 2 0 1 1-4 0 2 2 0 0 1 4 0", clipRule: "evenodd" })] })); } }; IconSpeakerFilled.iconName = "speaker--filled"; export default IconSpeakerFilled;