UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.66 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconMixer = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("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", { d: "M15 3C16.1046 3 17 3.89543 17 5V15C17 16.0357 16.2128 16.887 15.2041 16.9893L15 17H5L4.7959 16.9893C3.85435 16.8938 3.1062 16.1457 3.01074 15.2041L3 15V5C3 3.89543 3.89543 3 5 3H15ZM5 4C4.44772 4 4 4.44772 4 5V15C4 15.5523 4.44772 16 5 16H15C15.5523 16 16 15.5523 16 15V5C16 4.44772 15.5523 4 15 4H5ZM7 6C7.27614 6 7.5 6.22386 7.5 6.5V10.5H8C8.27614 10.5 8.5 10.7239 8.5 11C8.5 11.2761 8.27614 11.5 8 11.5H7.5V13.5C7.5 13.7761 7.27614 14 7 14C6.72386 14 6.5 13.7761 6.5 13.5V11.5H6C5.72386 11.5 5.5 11.2761 5.5 11C5.5 10.7239 5.72386 10.5 6 10.5H6.5V6.5C6.5 6.22386 6.72386 6 7 6ZM10 6C10.2761 6 10.5 6.22386 10.5 6.5V7.5H11C11.2761 7.5 11.5 7.72386 11.5 8C11.5 8.27614 11.2761 8.5 11 8.5H10.5V13.5C10.5 13.7761 10.2761 14 10 14C9.72386 14 9.5 13.7761 9.5 13.5V8.5H9C8.72386 8.5 8.5 8.27614 8.5 8C8.5 7.72386 8.72386 7.5 9 7.5H9.5V6.5C9.5 6.22386 9.72386 6 10 6ZM13 6C13.2761 6 13.5 6.22386 13.5 6.5V10.5H14C14.2761 10.5 14.5 10.7239 14.5 11C14.5 11.2761 14.2761 11.5 14 11.5H13.5V13.5C13.5 13.7761 13.2761 14 13 14C12.7239 14 12.5 13.7761 12.5 13.5V11.5H12C11.7239 11.5 11.5 11.2761 11.5 11C11.5 10.7239 11.7239 10.5 12 10.5H12.5V6.5C12.5 6.22386 12.7239 6 13 6Z" }) })); }; IconMixer.iconName = "mixer"; export default IconMixer;