@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.02 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconDialStackFilled = (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: "M15 12a7 7 0 1 1-14 0 7 7 0 0 1 14 0M4.22 8.22a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06", clipRule: "evenodd" }), _jsx("path", { d: "M14.476 6.212a.75.75 0 0 1 1.024-.274 7 7 0 0 1 0 12.124.75.75 0 1 1-.75-1.299 5.5 5.5 0 0 0 0-9.526.75.75 0 0 1-.274-1.025" }), _jsx("path", { d: "M18.476 6.212a.75.75 0 0 1 1.024-.274 7 7 0 0 1 0 12.124.75.75 0 1 1-.75-1.299 5.5 5.5 0 0 0 0-9.526.75.75 0 0 1-.274-1.025" })] }));
};
IconDialStackFilled.iconName = "dial-stack--filled";
export default IconDialStackFilled;