How to use the Telegram icon
import { TelegramIcon } from "@/assets/icons/telegramIcon"
export default function Example() {
return <TelegramIcon width="32px" height="32px" />
}Brands icon
Copy the Telegram icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const TelegramIcon = ({ width = "40px", height = "40px", color = "#000000" }) => (
<svg fill={color} width={width} height={height} viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<path d="M29.919 6.163l-4.225 19.925c-0.319 1.406-1.15 1.756-2.331 1.094l-6.438-4.744-3.106 2.988c-0.344 0.344-0.631 0.631-1.294 0.631l0.463-6.556 11.931-10.781c0.519-0.462-0.113-0.719-0.806-0.256l-14.75 9.288-6.35-1.988c-1.381-0.431-1.406-1.381 0.288-2.044l24.837-9.569c1.15-0.431 2.156 0.256 1.781 2.013z" />
</svg>
);
import { TelegramIcon } from "@/assets/icons/telegramIcon"
export default function Example() {
return <TelegramIcon width="32px" height="32px" />
}Built for the web
This copy-ready component works in React and Next.js projects, and the SVG can be adapted for any interface.
Looking for a similar mark? Browse the related icons below or explore the full brands collection.
Yes. You can copy the JSX component and use it in React and Next.js projects.
Yes. Edit the SVG attributes or pass className, width, height and color props depending on the component.