@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.81 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconKeyLightFilled = (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 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M5 7.6c0-.56 0-.84.109-1.054a1 1 0 0 1 .437-.437C5.76 6 6.04 6 6.6 6h10.8c.56 0 .84 0 1.054.109a1 1 0 0 1 .437.437C19 6.76 19 7.04 19 7.6v4.8c0 .56 0 .84-.109 1.054a1 1 0 0 1-.437.437C18.24 14 17.96 14 17.4 14H6.6c-.56 0-.84 0-1.054-.109a1 1 0 0 1-.437-.437C5 13.24 5 12.96 5 12.4z" }), _jsx("path", { fillRule: "evenodd", d: "M2.436 5.184C2 6.04 2 7.16 2 9.4v1.2c0 2.24 0 3.36.436 4.216a4 4 0 0 0 1.748 1.748C5.04 17 6.16 17 8.4 17h2.85v4.25a.75.75 0 0 0 1.5 0V17h2.85c2.24 0 3.36 0 4.216-.436a4 4 0 0 0 1.748-1.748C22 13.96 22 12.84 22 10.6V9.4c0-2.24 0-3.36-.436-4.216a4 4 0 0 0-1.748-1.748C18.96 3 17.84 3 15.6 3H8.4c-2.24 0-3.36 0-4.216.436a4 4 0 0 0-1.748 1.748M15.6 4.5H8.4c-1.145 0-1.913.001-2.505.05-.574.046-.849.13-1.03.222a2.5 2.5 0 0 0-1.093 1.093c-.092.181-.176.456-.222 1.03-.049.592-.05 1.36-.05 2.505v1.2c0 1.145.001 1.913.05 2.505.046.574.13.849.222 1.03a2.5 2.5 0 0 0 1.093 1.092c.181.093.456.177 1.03.223.592.049 1.36.05 2.505.05h7.2c1.145 0 1.913-.001 2.505-.05.574-.046.849-.13 1.03-.223a2.5 2.5 0 0 0 1.092-1.092c.093-.181.177-.456.224-1.03.048-.592.049-1.36.049-2.505V9.4c0-1.145-.001-1.913-.05-2.505-.046-.574-.13-.849-.223-1.03a2.5 2.5 0 0 0-1.092-1.093c-.181-.092-.456-.176-1.03-.222-.592-.049-1.36-.05-2.505-.05", clipRule: "evenodd" })] }));
};
IconKeyLightFilled.iconName = "key-light--filled";
export default IconKeyLightFilled;