@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
15 lines (14 loc) • 1.91 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconVolumeFilled = (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: "M19.485 3.515a.75.75 0 0 0-1.06 1.06 10.5 10.5 0 0 1 0 14.85.75.75 0 0 0 1.06 1.06 12 12 0 0 0 0-16.97" }), _jsx("path", { fillRule: "evenodd", d: "M9.293 20.293 5 16H3a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2l4.293-4.293c.63-.63 1.707-.184 1.707.707v15.172c0 .89-1.077 1.337-1.707.707", clipRule: "evenodd" }), _jsx("path", { d: "M15.95 5.99a.75.75 0 0 1 1.06 0 8.5 8.5 0 0 1 0 12.02.75.75 0 0 1-1.06-1.06 7 7 0 0 0 0-9.9.75.75 0 0 1 0-1.06" }), _jsx("path", { d: "M14.536 8.464a.75.75 0 1 0-1.061 1.061 3.5 3.5 0 0 1 0 4.95.75.75 0 0 0 1.06 1.06 5 5 0 0 0 0-7.07" })] }));
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: "M16.071 2.93a.5.5 0 1 0-.707.706 9 9 0 0 1 0 12.728.5.5 0 1 0 .707.707 10 10 0 0 0 0-14.142" }), _jsx("path", { fillRule: "evenodd", d: "M9 3.5a.5.5 0 0 0-.854-.353L4.293 7H3a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h1.293l3.853 3.854A.5.5 0 0 0 9 16.5z", clipRule: "evenodd" }), _jsx("path", { d: "M11.828 7.172a.5.5 0 1 0-.707.707 3 3 0 0 1 0 4.243.5.5 0 0 0 .707.707 4 4 0 0 0 0-5.657" }), _jsx("path", { d: "M13.243 5.05a.5.5 0 0 1 .707 0 7 7 0 0 1 0 9.9.5.5 0 0 1-.707-.707 6 6 0 0 0 0-8.485.5.5 0 0 1 0-.708" })] }));
}
};
IconVolumeFilled.iconName = "volume--filled";
export default IconVolumeFilled;