@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.3 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconVolumeMixer = (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", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.75 4C10.5642 4 12.0775 5.28832 12.425 7L21.25 7C21.6642 7 22 7.33579 22 7.75C22 8.16421 21.6642 8.5 21.25 8.5L12.425 8.5C12.0775 10.2117 10.5642 11.5 8.75 11.5C6.93578 11.5 5.42247 10.2117 5.07501 8.5L2.75 8.5C2.33579 8.5 2 8.16421 2 7.75C2 7.33579 2.33579 7 2.75 7L5.07501 7C5.42247 5.28832 6.93578 4 8.75 4ZM8.75 5.5C7.50736 5.5 6.5 6.50736 6.5 7.75C6.5 8.99264 7.50736 10 8.75 10C9.99264 10 11 8.99264 11 7.75C11 6.50736 9.99264 5.5 8.75 5.5Z" }), _jsx("path", { d: "M2 16.25C2 15.8358 2.33579 15.5 2.75 15.5H9.75C10.1642 15.5 10.5 15.8358 10.5 16.25C10.5 16.6642 10.1642 17 9.75 17H2.75C2.33579 17 2 16.6642 2 16.25Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.537 11.0571C17.8173 11.1732 18 11.4467 18 11.75V20.75C18 21.0533 17.8173 21.3268 17.537 21.4429C17.2568 21.559 16.9342 21.4948 16.7197 21.2803L14.4393 19H13.5C12.6716 19 12 18.3284 12 17.5V15C12 14.1716 12.6716 13.5 13.5 13.5H14.4393L16.7197 11.2197C16.9342 11.0052 17.2568 10.941 17.537 11.0571ZM16.5 13.5607L15.2803 14.7803C15.1397 14.921 14.9489 15 14.75 15H13.5V17.5H14.75C14.9489 17.5 15.1397 17.579 15.2803 17.7197L16.5 18.9393V13.5607Z" }), _jsx("path", { d: "M20.7552 13.2448C20.4623 12.9519 19.9874 12.9519 19.6945 13.2448C19.4016 13.5377 19.4016 14.0126 19.6945 14.3055C19.9499 14.5608 20.1525 14.864 20.2907 15.1976C20.4289 15.5313 20.5 15.8889 20.5 16.25C20.5 16.6111 20.4289 16.9687 20.2907 17.3024C20.1525 17.636 19.9499 17.9392 19.6945 18.1945C19.4016 18.4874 19.4016 18.9623 19.6945 19.2552C19.9874 19.5481 20.4623 19.5481 20.7552 19.2552C21.1499 18.8606 21.4629 18.392 21.6765 17.8764C21.8901 17.3608 22 16.8081 22 16.25C22 15.6919 21.8901 15.1392 21.6765 14.6236C21.4629 14.108 21.1499 13.6394 20.7552 13.2448Z" })] }));
};
IconVolumeMixer.iconName = "volume-mixer";
export default IconVolumeMixer;