UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 2.84 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconVolumeMuted = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": 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: "M5 15.9999L9.29289 20.2928C9.92286 20.9228 11 20.4766 11 19.5857V4.41411C11 3.52321 9.92286 3.07704 9.29289 3.70701L5 7.9999H3C1.89543 7.9999 1 8.89533 1 9.9999V13.9999C1 15.1045 1.89543 15.9999 3 15.9999H5ZM3 14.4999H5.62132L9.5 18.3786V5.62122L5.62132 9.4999H3C2.72386 9.4999 2.5 9.72376 2.5 9.9999V13.9999C2.5 14.276 2.72386 14.4999 3 14.4999Z" }), _jsx("path", { d: "M14.2197 14.7197C13.9268 15.0126 13.9268 15.4874 14.2197 15.7803C14.5126 16.0732 14.9874 16.0732 15.2803 15.7803L18 13.0607L20.7197 15.7803C21.0126 16.0732 21.4874 16.0732 21.7803 15.7803C22.0732 15.4874 22.0732 15.0126 21.7803 14.7197L19.0607 12L21.7803 9.28033C22.0732 8.98744 22.0732 8.51256 21.7803 8.21967C21.4874 7.92678 21.0126 7.92678 20.7197 8.21967L18 10.9393L15.2803 8.21967C14.9874 7.92678 14.5126 7.92678 14.2197 8.21967C13.9268 8.51256 13.9268 8.98744 14.2197 9.28033L16.9393 12L14.2197 14.7197Z" })] })); default: return (_jsxs("svg", { viewBox: "0 0 20 20", 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: "M9 3.50001C9 3.29778 8.87818 3.11547 8.69134 3.03807C8.5045 2.96068 8.28945 3.00346 8.14645 3.14646L4.29289 7.00001H3C1.89543 7.00001 1 7.89545 1 9.00001V11C1 12.1046 1.89543 13 3 13H4.29289L8.14645 16.8536C8.28945 16.9966 8.5045 17.0393 8.69134 16.962C8.87818 16.8846 9 16.7022 9 16.5V3.50001ZM4.85355 7.85357L8 4.70712V15.2929L4.85355 12.1465C4.75979 12.0527 4.63261 12 4.5 12H3C2.44772 12 2 11.5523 2 11V9.00001C2 8.44773 2.44772 8.00001 3 8.00001H4.5C4.63261 8.00001 4.75979 7.94734 4.85355 7.85357Z" }), _jsx("path", { d: "M12.1464 7.14645C12.3417 6.95118 12.6583 6.95118 12.8536 7.14645L15 9.29289L17.1464 7.14645C17.3417 6.95118 17.6583 6.95118 17.8536 7.14645C18.0488 7.34171 18.0488 7.65829 17.8536 7.85355L15.7071 10L17.8536 12.1464C18.0488 12.3417 18.0488 12.6583 17.8536 12.8536C17.6583 13.0488 17.3417 13.0488 17.1464 12.8536L15 10.7071L12.8536 12.8536C12.6583 13.0488 12.3417 13.0488 12.1464 12.8536C11.9512 12.6583 11.9512 12.3417 12.1464 12.1464L14.2929 10L12.1464 7.85355C11.9512 7.65829 11.9512 7.34171 12.1464 7.14645Z" })] })); } }; IconVolumeMuted.iconName = "volume-muted"; export default IconVolumeMuted;