@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
15 lines (14 loc) • 1.42 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconViewFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
switch (props?.size) {
case "l":
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: "M14.5 12a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0" }), _jsx("path", { fillRule: "evenodd", d: "M12 5c-5.172 0-8.5 4.237-9.723 6.118a1.61 1.61 0 0 0 0 1.764C3.499 14.763 6.827 19 12 19c5.172 0 8.5-4.237 9.724-6.118a1.61 1.61 0 0 0 0-1.764C20.5 9.237 17.172 5 12 5m4 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0", clipRule: "evenodd" })] }));
default:
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M12 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }), _jsx("path", { fillRule: "evenodd", d: "M1.774 9.343a1.61 1.61 0 0 0 0 1.313A9 9 0 0 0 10 16a9 9 0 0 0 8.226-5.344 1.62 1.62 0 0 0 0-1.313A9 9 0 0 0 10 4a9 9 0 0 0-8.226 5.343M13 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0", clipRule: "evenodd" })] }));
}
};
IconViewFilled.iconName = "view--filled";
export default IconViewFilled;