icon-telegram.tsx 667 B

12345678910111213141516171819202122232425
  1. import { type SVGProps } from 'react'
  2. import { cn } from '@/lib/utils'
  3. export function IconTelegram({ className, ...props }: SVGProps<SVGSVGElement>) {
  4. return (
  5. <svg
  6. role='img'
  7. viewBox='0 0 24 24'
  8. xmlns='http://www.w3.org/2000/svg'
  9. width='24'
  10. height='24'
  11. className={cn('[&>path]:stroke-current', className)}
  12. fill='none'
  13. stroke='currentColor'
  14. strokeWidth='2'
  15. strokeLinecap='round'
  16. strokeLinejoin='round'
  17. {...props}
  18. >
  19. <title>Telegram</title>
  20. <path strokeWidth='0' d='M0 0h24v24H0z' fill='none' />
  21. <path d='M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4' />
  22. </svg>
  23. )
  24. }