UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 907 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconDiagram = (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", { fillRule: "evenodd", d: "M21 11h-8V3c0-.552.45-1.006.998-.945a9 9 0 0 1 7.947 7.947c.06.549-.393.998-.945.998m-1.07-2.87q.275.666.419 1.37H14.5V3.652a7.5 7.5 0 0 1 5.43 4.478", clipRule: "evenodd" }), _jsx("path", { fillRule: "evenodd", d: "M11 5c0-.552-.45-1.006-.998-.945a9 9 0 1 0 9.943 9.943c.06-.549-.393-.998-.945-.998h-8zm-1.5 9.5h8.849A7.5 7.5 0 1 1 9.5 5.652z", clipRule: "evenodd" })] })); }; IconDiagram.iconName = "diagram"; export default IconDiagram;