@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.23 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconIronLow = (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: "M11 11C11 11.5523 10.5523 12 10 12C9.44772 12 9 11.5523 9 11C9 10.4477 9.44772 10 10 10C10.5523 10 11 10.4477 11 11Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.5 3C8.22386 3 8 3.22386 8 3.5C8 3.77614 8.22386 4 8.5 4H15C15.5523 4 16 4.44772 16 5V7.26756C15.7058 7.09739 15.3643 7 15 7H9C5.68629 7 3 9.68629 3 13C3 14.1046 3.89543 15 5 15H15C16.1046 15 17 14.1046 17 13V5C17 3.89543 16.1046 3 15 3H8.5ZM16 9C16 8.44772 15.5523 8 15 8H9C6.23858 8 4 10.2386 4 13C4 13.5523 4.44772 14 5 14H15C15.5523 14 16 13.5523 16 13V9Z" }), _jsx("path", { d: "M3.5 16C3.22386 16 3 16.2239 3 16.5C3 16.7761 3.22386 17 3.5 17H16.5C16.7761 17 17 16.7761 17 16.5C17 16.2239 16.7761 16 16.5 16H3.5Z" })] }));
};
IconIronLow.iconName = "iron-low";
export default IconIronLow;