import type { SVGProps } from "react"; export interface TelegramNeutralProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * TelegramNeutral icon from social-media category * * @example * * */ export const TelegramNeutral = ({ size = 16, ...props }: TelegramNeutralProps) => ( );