import React from 'react'; interface TelegramIconProps { color?: string; className?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function TelegramIcon({ className , color = 'white' }: TelegramIconProps) { return ( ); }