@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLightBulbFilled = (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 3V1.5Z" }), _jsx("path", { d: "M16.3641 3.63607C16.5593 3.83133 16.5593 4.14792 16.3641 4.34318L14.9498 5.75739C14.7546 5.95265 14.438 5.95265 14.2427 5.75739C14.0475 5.56213 14.0475 5.24555 14.2427 5.05028L15.6569 3.63607C15.8522 3.44081 16.1688 3.44081 16.3641 3.63607Z" }), _jsx("path", { d: "M15 10C15 12.7614 12.7614 15 10 15C7.23858 15 5 12.7614 5 10C5 7.23858 7.23858 5 10 5C12.7614 5 15 7.23858 15 10Z" }), _jsx("path", { d: "M8 15.6586V16C8 17.1045 8.89543 18 10 18C11.1046 18 12 17.1045 12 16V15.6586C11.3744 15.8797 10.7013 16 10 16C9.29873 16 8.62556 15.8797 8 15.6586Z" }), _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.63607C3.83139 3.44081 4.14798 3.44081 4.34324 3.63607L5.75745 5.05028C5.95271 5.24555 5.95271 5.56213 5.75745 5.75739C5.56219 5.95265 5.24561 5.95265 5.05034 5.75739L3.63613 4.34318C3.44087 4.14792 3.44087 3.83133 3.63613 3.63607Z" }), _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" })] }));
};
IconLightBulbFilled.iconName = "light-bulb--filled";
export default IconLightBulbFilled;