@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.14 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconAnnounce = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
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: "M2 8.8969C2 8.05785 2.52372 7.308 3.31149 7.01915L14.3115 2.98582C15.6167 2.50724 17 3.47337 17 4.86357V14.1365C17 15.5267 15.6167 16.4928 14.3115 16.0142L9 14.0667V15C9 16.1046 8.10457 17 7 17C5.89543 17 5 16.1046 5 15V12.6L3.31149 11.9809C2.52372 11.6921 2 10.9422 2 10.1032V8.8969ZM3.65575 7.95803L14.6557 3.92469C15.3084 3.6854 16 4.16847 16 4.86357V14.1365C16 14.8316 15.3084 15.3147 14.6557 15.0754L3.65575 11.042C3.26186 10.8976 3 10.5227 3 10.1032V8.8969C3 8.47738 3.26186 8.10245 3.65575 7.95803ZM6 12.9667V15C6 15.5523 6.44772 16 7 16C7.55228 16 8 15.5523 8 15V13.7L6 12.9667Z" }) }));
};
IconAnnounce.iconName = "announce";
export default IconAnnounce;