@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 741 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCloud = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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", { fillRule: "evenodd", d: "m17.04 11.344-.044-1.055a5 5 0 0 0-9.992 0l-.043 1.055-1.008.315A3.502 3.502 0 0 0 7 18.5h10a3.5 3.5 0 0 0 1.047-6.841zM5.505 10.227A5.002 5.002 0 0 0 7 20h10a5 5 0 0 0 1.494-9.773 6.5 6.5 0 0 0-12.988 0", clipRule: "evenodd" }) }));
};
IconCloud.iconName = "cloud";
export default IconCloud;