@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.17 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", { 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: "M10.5001 1.5C10.5001 1.22386 10.2762 1 10.0001 1C9.72392 1 9.50006 1.22386 9.50006 1.5V3C9.50006 3.27614 9.72392 3.5 10.0001 3.5C10.2762 3.5 10.5001 3.27614 10.5001 3L10.5001 1.5Z" }), _jsx("path", { d: "M16.364 3.63607C16.5593 3.83133 16.5593 4.14791 16.364 4.34317L14.9498 5.75739C14.7545 5.95265 14.438 5.95265 14.2427 5.75739C14.0474 5.56213 14.0474 5.24554 14.2427 5.05028L15.6569 3.63607C15.8522 3.44081 16.1688 3.44081 16.364 3.63607Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15 10C15 12.0503 13.7659 13.8124 12 14.584V16C12 17.1046 11.1046 18 10 18C8.89543 18 8 17.1046 8 16V14.584C6.23409 13.8124 5 12.0503 5 10C5 7.23858 7.23858 5 10 5C12.7614 5 15 7.23858 15 10ZM10 14C12.2091 14 14 12.2091 14 10C14 7.79086 12.2091 6 10 6C7.79086 6 6 7.79086 6 10C6 12.2091 7.79086 14 10 14ZM10 15C10.3425 15 10.6769 14.9656 11 14.9V16C11 16.5523 10.5523 17 10 17C9.44771 17 9 16.5523 9 16V14.9C9.32311 14.9656 9.65753 15 10 15Z" }), _jsx("path", { d: "M18.5001 10.5C18.7762 10.5 19.0001 10.2761 19.0001 10C19.0001 9.72386 18.7762 9.5 18.5001 9.5H16.5001C16.2239 9.5 16.0001 9.72386 16.0001 10C16.0001 10.2761 16.2239 10.5 16.5001 10.5H18.5001Z" }), _jsx("path", { d: "M3.63613 3.63604C3.83139 3.44078 4.14797 3.44078 4.34324 3.63604L5.75745 5.05025C5.95271 5.24551 5.95271 5.5621 5.75745 5.75736C5.56219 5.95262 5.2456 5.95262 5.05034 5.75736L3.63613 4.34315C3.44087 4.14788 3.44087 3.8313 3.63613 3.63604Z" }), _jsx("path", { d: "M1.50006 9.5C1.22392 9.5 1.00006 9.72386 1.00006 10C1.00006 10.2761 1.22392 10.5 1.50006 10.5H3.50006C3.7762 10.5 4.00006 10.2761 4.00006 10C4.00006 9.72386 3.7762 9.5 3.50006 9.5H1.50006Z" })] }));
};
IconLightBulb.iconName = "light-bulb";
export default IconLightBulb;