import React from "react"
import { IconProps } from "./types"

export default function Telegram({
  height = 24,
  width = 24,
  color = "#A8ADB5",
}: IconProps) {
  return (
    <svg
      width={height}
      height={width}
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M12.5932 23.2584L12.5822 23.2604L12.5112 23.2954L12.4912 23.2994L12.4772 23.2954L12.4062 23.2604C12.3955 23.2571 12.3875 23.2588 12.3822 23.2654L12.3782 23.2754L12.3612 23.7034L12.3662 23.7234L12.3762 23.7364L12.4802 23.8104L12.4952 23.8144L12.5072 23.8104L12.6112 23.7364L12.6232 23.7204L12.6272 23.7034L12.6102 23.2764C12.6075 23.2658 12.6018 23.2598 12.5932 23.2584ZM12.8582 23.1454L12.8452 23.1474L12.6602 23.2404L12.6502 23.2504L12.6472 23.2614L12.6652 23.6914L12.6702 23.7034L12.6782 23.7104L12.8792 23.8034C12.8918 23.8068 12.9015 23.8041 12.9082 23.7954L12.9122 23.7814L12.8782 23.1674C12.8748 23.1554 12.8682 23.1481 12.8582 23.1454ZM12.1432 23.1474C12.1388 23.1448 12.1335 23.1439 12.1285 23.145C12.1234 23.1461 12.119 23.1491 12.1162 23.1534L12.1102 23.1674L12.0762 23.7814C12.0768 23.7934 12.0825 23.8014 12.0932 23.8054L12.1082 23.8034L12.3092 23.7104L12.3192 23.7024L12.3232 23.6914L12.3402 23.2614L12.3372 23.2494L12.3272 23.2394L12.1432 23.1474Z"
        fill={color}
      />
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M19.7771 4.42997C20.0243 4.32596 20.2947 4.29008 20.5604 4.32608C20.8261 4.36208 21.0773 4.46863 21.2878 4.63465C21.4984 4.80067 21.6606 5.02008 21.7575 5.27005C21.8545 5.52002 21.8827 5.79141 21.8391 6.05597L19.5711 19.813C19.3511 21.14 17.8951 21.901 16.6781 21.24C15.6601 20.687 14.1481 19.835 12.7881 18.946C12.1081 18.501 10.0251 17.076 10.2811 16.062C10.5011 15.195 14.0011 11.937 16.0011 9.99997C16.7861 9.23897 16.4281 8.79997 15.5011 9.49997C13.1991 11.238 9.50314 13.881 8.28114 14.625C7.20314 15.281 6.64114 15.393 5.96914 15.281C4.74314 15.077 3.60614 14.761 2.67814 14.376C1.42414 13.856 1.48514 12.132 2.67714 11.63L19.7771 4.42997Z"
        fill={color}
      />
    </svg>
  )
}
