@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.1 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLightBulb = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
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: "M10.5 1.5a.5.5 0 0 0-1 0V3a.5.5 0 0 0 1 0zM16.364 3.636a.5.5 0 0 1 0 .707L14.95 5.757a.5.5 0 1 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0" }), _jsx("path", { fillRule: "evenodd", d: "M15 10a5 5 0 0 1-3 4.584V16a2 2 0 1 1-4 0v-1.416A5.001 5.001 0 0 1 10 5a5 5 0 0 1 5 5m-5 4a4 4 0 1 0 0-8 4 4 0 0 0 0 8m0 1q.514 0 1-.1V16a1 1 0 1 1-2 0v-1.1q.486.1 1 .1", clipRule: "evenodd" }), _jsx("path", { d: "M18.5 10.5a.5.5 0 0 0 0-1h-2a.5.5 0 1 0 0 1zM3.636 3.636a.5.5 0 0 1 .707 0L5.757 5.05a.5.5 0 0 1-.707.707L3.636 4.343a.5.5 0 0 1 0-.707M1.5 9.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z" })] }));
};
IconLightBulb.iconName = "light-bulb";
export default IconLightBulb;