UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.4 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconCollab = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M15 5C18.866 5 22 8.13401 22 12C22 15.866 18.866 19 15 19C13.9262 19 12.9094 18.7573 12 18.3252C11.0906 18.7573 10.0738 19 9 19C5.13401 19 2 15.866 2 12C2 8.13401 5.13401 5 9 5C10.0736 5 11.0907 5.24187 12 5.67383C12.9093 5.24187 13.9264 5 15 5ZM9 6.5C5.96243 6.5 3.5 8.96243 3.5 12C3.5 15.0376 5.96243 17.5 9 17.5C9.49816 17.5 9.98056 17.4327 10.4395 17.3086C8.94651 16.0248 8 14.1234 8 12C8 9.87634 8.94623 7.97418 10.4395 6.69043C9.98063 6.56634 9.49807 6.5 9 6.5ZM15 6.5C14.5016 6.5 14.0187 6.56618 13.5596 6.69043C15.0531 7.97419 16 9.87607 16 12C16 14.1237 15.0528 16.0248 13.5596 17.3086C14.0187 17.4329 14.5015 17.5 15 17.5C18.0376 17.5 20.5 15.0376 20.5 12C20.5 8.96243 18.0376 6.5 15 6.5ZM12 7.39062C10.4952 8.37203 9.5 10.0694 9.5 12C9.5 13.9304 10.4954 15.627 12 16.6084C13.5046 15.627 14.5 13.9304 14.5 12C14.5 10.0694 13.5048 8.37203 12 7.39062Z" }) })); }; IconCollab.iconName = "collab"; export default IconCollab;