UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 2.49 kB
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", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3C8.68629 3 6 5.68629 6 9V12L4.58579 13.4142C4.21071 13.7893 4 14.298 4 14.8284V16C4 17.1046 4.89543 18 6 18H8.12701C8.30416 18.686 8.66203 19.3189 9.17157 19.8284C9.92172 20.5786 10.9391 21 12 21C13.0609 21 14.0783 20.5786 14.8284 19.8284C15.338 19.3189 15.6958 18.686 15.873 18H18C19.1046 18 20 17.1046 20 16V14.8284C20 14.298 19.7893 13.7893 19.4142 13.4142L18 12V9C18 5.68629 15.3137 3 12 3ZM14.2913 18H9.70871C9.83253 18.2837 10.0091 18.5447 10.2322 18.7678C10.7011 19.2366 11.337 19.5 12 19.5C12.663 19.5 13.2989 19.2366 13.7678 18.7678C13.9909 18.5447 14.1675 18.2837 14.2913 18Z" }) })); default: return (_jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 3C7.23858 3 5 5.23858 5 8V10.5858C5 10.851 4.89464 11.1054 4.70711 11.2929L3.43934 12.5607C3.15804 12.842 3 13.2235 3 13.6213V14.5C3 15.3284 3.67157 16 4.5 16H7.17157C7.18917 16.0498 7.20811 16.0992 7.22836 16.1481C7.37913 16.512 7.6001 16.8427 7.87868 17.1213C8.15726 17.3999 8.48797 17.6209 8.85195 17.7716C9.21593 17.9224 9.60603 18 10 18C10.394 18 10.7841 17.9224 11.1481 17.7716C11.512 17.6209 11.8427 17.3999 12.1213 17.1213C12.3999 16.8427 12.6209 16.512 12.7716 16.1481C12.7919 16.0992 12.8108 16.0498 12.8284 16H15.5C16.3284 16 17 15.3284 17 14.5V13.6213C17 13.2235 16.842 12.842 16.5607 12.5607L15.2929 11.2929C15.1054 11.1054 15 10.851 15 10.5858V8C15 5.23858 12.7614 3 10 3ZM11.7321 16H8.26795C8.35515 16.151 8.46193 16.2904 8.58579 16.4142C8.7715 16.5999 8.99198 16.7472 9.23463 16.8478C9.47728 16.9483 9.73736 17 10 17C10.2626 17 10.5227 16.9483 10.7654 16.8478C11.008 16.7472 11.2285 16.5999 11.4142 16.4142C11.5381 16.2904 11.6448 16.151 11.7321 16Z" }) })); } }; IconNotificationFilled.iconName = "notification--filled"; export default IconNotificationFilled;