UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 2.48 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconGroupFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M11 7.5C11 9.433 9.433 11 7.5 11C5.567 11 4 9.433 4 7.5C4 5.567 5.567 4 7.5 4C9.433 4 11 5.567 11 7.5Z" }), _jsx("path", { d: "M20 7.5C20 9.433 18.433 11 16.5 11C14.567 11 13 9.433 13 7.5C13 5.567 14.567 4 16.5 4C18.433 4 20 5.567 20 7.5Z" }), _jsx("path", { d: "M7.5 12.5C4.46243 12.5 2 14.9624 2 18C2 19.1046 2.89543 20 4 20H11C12.1046 20 13 19.1046 13 18C13 14.9624 10.5376 12.5 7.5 12.5Z" }), _jsx("path", { d: "M14.3463 19.0297C14.2764 19.2572 14.3186 19.5043 14.46 19.6957C14.6014 19.8871 14.8253 20 15.0632 20H20C21.1046 20 22 19.1046 22 18C22 14.9624 19.5376 12.5 16.5 12.5C15.4797 12.5 14.5222 12.7785 13.7018 13.2641C13.5281 13.367 13.4032 13.5354 13.3553 13.7315C13.3074 13.9275 13.3405 14.1346 13.4472 14.3059C14.1144 15.3777 14.5 16.6427 14.5 18C14.5 18.3595 14.4461 18.7051 14.3463 19.0297Z" })] })); default: 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 6C10 7.65685 8.65685 9 7 9C5.34315 9 4 7.65685 4 6C4 4.34315 5.34315 3 7 3C8.65685 3 10 4.34315 10 6Z" }), _jsx("path", { d: "M7 10C4.23858 10 2 12.2386 2 15C2 16.1046 2.89543 17 4 17H10C10.1727 17 10.3402 16.9781 10.5 16.937C10.5319 16.9288 10.5635 16.9198 10.5947 16.9101C11.4089 16.6569 12 15.8975 12 15C12 13.5268 11.3628 12.2024 10.3491 11.2873C9.4626 10.4872 8.28819 10 7 10Z" }), _jsx("path", { d: "M16 17H13.3546C12.9224 17 12.6606 16.4534 12.8117 16.0485C12.9334 15.7221 13 15.3688 13 15C13 13.5279 12.4699 12.1797 11.5901 11.1358C11.379 10.8852 11.4204 10.4948 11.7213 10.3652C12.2669 10.1302 12.8683 10 13.5 10C15.9853 10 18 12.0147 18 14.5V15C18 16.1046 17.1046 17 16 17Z" }), _jsx("path", { d: "M13.5 9C14.8807 9 16 7.88071 16 6.5C16 5.11929 14.8807 4 13.5 4C12.1193 4 11 5.11929 11 6.5C11 7.88071 12.1193 9 13.5 9Z" })] })); } }; IconGroupFilled.iconName = "group--filled"; export default IconGroupFilled;