@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.94 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconSoundEffectAdd = (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: "M11.277 4.053a.75.75 0 0 1 .46.84c-.819 4.191-.974 6.567-.636 8.429.1.556.246 1.071.438 1.583a6.5 6.5 0 0 0-.536 2.403c-.654-1.218-1.132-2.365-1.378-3.718-.267-1.472-.255-3.157.041-5.421-.235.401-.455.817-.658 1.276-.669 1.508-1.15 3.48-1.258 6.83a.75.75 0 0 1-1.435.281c-.703-1.572-1.214-2.746-1.548-4.043A15 15 0 0 1 4.354 10l-.018.037c-.252.538-.416 1.14-.6 2.104a.75.75 0 0 1-.736.61H1.75a.75.75 0 0 1 0-1.5h.637c.155-.71.33-1.292.59-1.85.334-.711.79-1.34 1.447-2.13a.75.75 0 0 1 1.326.469c.03 1.983.175 3.253.47 4.4.08.314.173.62.28.933.24-1.764.63-3.095 1.136-4.235.535-1.206 1.21-2.206 1.902-3.233.276-.41.554-.823.828-1.255a.75.75 0 0 1 .911-.296M13.708 12.22a6.5 6.5 0 0 0-1.692 1.789c.038-.798.119-1.528.244-2.217.36-1.982 1.076-3.573 2.083-5.403a.75.75 0 0 1 1.406.399c-.08 1.584.033 3.023.3 4.375a6.5 6.5 0 0 0-1.428.508 19 19 0 0 1-.284-1.786 12.5 12.5 0 0 0-.63 2.335M17.5 11q-.415 0-.814.05c.281-1.368.783-2.593 1.73-3.77a.75.75 0 0 1 1.327.371c.157 1.177.288 1.851.519 2.367.191.428.47.785 1.004 1.232h.984a.75.75 0 0 1 0 1.5h-.313a6.5 6.5 0 0 0-2.717-1.52 4 4 0 0 1-.328-.6 5.4 5.4 0 0 1-.279-.797 7.6 7.6 0 0 0-.39 1.207A7 7 0 0 0 17.5 11" }), _jsx("path", { fillRule: "evenodd", d: "M23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0M17.5 14a.5.5 0 0 1 .5.5V17h2.5a.5.5 0 0 1 0 1H18v2.5a.5.5 0 0 1-1 0V18h-2.5a.5.5 0 1 1 0-1H17v-2.5a.5.5 0 0 1 .5-.5", clipRule: "evenodd" })] }));
};
IconSoundEffectAdd.iconName = "sound-effect-add";
export default IconSoundEffectAdd;