UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.55 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoTelegram = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; 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 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.0885 8.01997C15.7124 8.02675 15.1349 8.22828 12.3592 9.38281C11.3865 9.78737 9.44211 10.6246 6.52691 11.8947C6.05363 12.083 5.80512 12.267 5.78255 12.447C5.73945 12.7925 6.23736 12.9001 6.86328 13.1035C7.37386 13.2695 8.06113 13.4636 8.41819 13.4714C8.74199 13.4783 9.10319 13.3449 9.50217 13.071C12.2259 11.2323 13.6326 10.3035 13.7209 10.2834C13.7832 10.2693 13.8698 10.251 13.9282 10.303C13.9864 10.3549 13.9799 10.4534 13.9737 10.4798C13.9242 10.6909 11.366 13.0189 11.2188 13.1719C10.6562 13.7561 10.0168 14.1132 11.0039 14.7637C11.8581 15.3266 12.3548 15.6864 13.2348 16.2632C13.7972 16.6319 14.2384 17.0685 14.819 17.0152C15.0862 16.9906 15.3624 16.7392 15.5026 15.9898C15.8339 14.2188 16.4849 10.3826 16.6354 8.80122C16.6486 8.66284 16.6325 8.4853 16.6191 8.40734C16.6058 8.32955 16.578 8.21814 16.477 8.13607C16.3572 8.03885 16.1713 8.01851 16.0885 8.01997Z" }) })); }; IconLogoTelegram.iconName = "logo-telegram"; export default IconLogoTelegram;