@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.95 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconTemperatureCool = (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: "M7.5 3C6.11929 3 5 4.11929 5 5.5V12.7578C3.79401 13.565 3 14.9398 3 16.5C3 18.9853 5.01472 21 7.5 21C9.98528 21 12 18.9853 12 16.5C12 14.9398 11.206 13.565 10 12.7578V5.5C10 4.11929 8.88071 3 7.5 3ZM5.83439 14.0043L6.5 13.5587V5.5C6.5 4.94772 6.94772 4.5 7.5 4.5C8.05228 4.5 8.5 4.94772 8.5 5.5V13.5587L9.16561 14.0043C9.97338 14.545 10.5 15.4613 10.5 16.5C10.5 18.1569 9.15685 19.5 7.5 19.5C5.84315 19.5 4.5 18.1569 4.5 16.5C4.5 15.4613 5.02662 14.545 5.83439 14.0043Z" }), _jsx("path", { d: "M15.75 3.75V6.18934L17.4697 4.46967C17.7626 4.17678 18.2374 4.17678 18.5303 4.46967C18.8232 4.76256 18.8232 5.23744 18.5303 5.53033L15.75 8.31066V9.25H16.6893L19.4697 6.46967C19.7626 6.17678 20.2374 6.17678 20.5303 6.46967C20.8232 6.76256 20.8232 7.23744 20.5303 7.53033L18.8107 9.25H21.25C21.6642 9.25 22 9.58579 22 10C22 10.4142 21.6642 10.75 21.25 10.75H18.8107L20.5303 12.4697C20.8232 12.7626 20.8232 13.2374 20.5303 13.5303C20.2374 13.8232 19.7626 13.8232 19.4697 13.5303L16.6893 10.75H15.75V11.6893L18.5303 14.4697C18.8232 14.7626 18.8232 15.2374 18.5303 15.5303C18.2374 15.8232 17.7626 15.8232 17.4697 15.5303L15.75 13.8107V16.25C15.75 16.6642 15.4142 17 15 17C14.5858 17 14.25 16.6642 14.25 16.25V10.75H12.75C12.3358 10.75 12 10.4142 12 10C12 9.58579 12.3358 9.25 12.75 9.25H14.25V3.75C14.25 3.33579 14.5858 3 15 3C15.4142 3 15.75 3.33579 15.75 3.75Z" })] }));
};
IconTemperatureCool.iconName = "temperature-cool";
export default IconTemperatureCool;