@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 914 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconMeteringCenterWeightedFilled = (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: "M3.614 8.025A.75.75 0 0 0 4.64 7.75a8.5 8.5 0 0 1 14.722 0 .75.75 0 0 0 1.3-.75A10 10 0 0 0 3.34 7a.75.75 0 0 0 .274 1.025M3.614 15.976a.75.75 0 0 1 1.025.274 8.5 8.5 0 0 0 14.722 0 .75.75 0 0 1 1.3.75A10 10 0 0 1 3.34 17a.75.75 0 0 1 .274-1.024" }), _jsx("path", { d: "M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8" })] }));
};
IconMeteringCenterWeightedFilled.iconName = "metering-center-weighted--filled";
export default IconMeteringCenterWeightedFilled;