UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 995 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconNotificationOffFilled = (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: "M2.22 21.78a.75.75 0 0 1 0-1.06l18.5-18.5a.75.75 0 1 1 1.06 1.06l-4.023 4.024C17.915 7.842 18 8.41 18 9v3l1.414 1.414A2 2 0 0 1 20 14.828V16a2 2 0 0 1-2 2h-2.127a4 4 0 0 1-7.746 0H7.061l-3.78 3.78a.75.75 0 0 1-1.061 0M9.709 18a2.5 2.5 0 0 0 4.582 0z", clipRule: "evenodd" }), _jsx("path", { d: "M4.125 16.696 16.152 4.67A6 6 0 0 0 6 9v3l-1.414 1.414A2 2 0 0 0 4 14.828V16c0 .245.044.48.125.696" })] })); }; IconNotificationOffFilled.iconName = "notification-off--filled"; export default IconNotificationOffFilled;