@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 744 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconDiagramFilled = (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: "M21 11c.552 0 1.006-.45.945-.998a9 9 0 0 0-7.947-7.946C13.449 1.993 13 2.448 13 3v8z" }), _jsx("path", { d: "M11 5c0-.552-.45-1.006-.998-.945a9 9 0 1 0 9.943 9.943c.06-.549-.393-.998-.945-.998h-8z" })] }));
};
IconDiagramFilled.iconName = "diagram--filled";
export default IconDiagramFilled;