@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
15 lines (14 loc) • 1.4 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNotificationFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
switch (props?.size) {
case "l":
return (_jsx("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: "M12 3a6 6 0 0 0-6 6v3l-1.414 1.414A2 2 0 0 0 4 14.828V16a2 2 0 0 0 2 2h2.127a4 4 0 0 0 7.746 0H18a2 2 0 0 0 2-2v-1.172a2 2 0 0 0-.586-1.414L18 12V9a6 6 0 0 0-6-6m2.291 15H9.71a2.5 2.5 0 0 0 4.582 0", clipRule: "evenodd" }) }));
default:
return (_jsx("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", { fillRule: "evenodd", d: "M10 3a5 5 0 0 0-5 5v2.586a1 1 0 0 1-.293.707L3.44 12.56A1.5 1.5 0 0 0 3 13.62v.879A1.5 1.5 0 0 0 4.5 16h2.672a3 3 0 0 0 5.656 0H15.5a1.5 1.5 0 0 0 1.5-1.5v-.879a1.5 1.5 0 0 0-.44-1.06l-1.267-1.268a1 1 0 0 1-.293-.707V8a5 5 0 0 0-5-5m1.732 13H8.268a2 2 0 0 0 3.464 0", clipRule: "evenodd" }) }));
}
};
IconNotificationFilled.iconName = "notification--filled";
export default IconNotificationFilled;