import styles from './telegramLink.module.scss'; import Link, { LinkProps } from 'next/link'; import TelegramIcon from '@/assets/icons/telegram.svg'; import clsx from 'clsx'; import { CursorEffect } from '@/components/cursor'; type TelegramLinkProps = Omit & { className?: string }; export function TelegramLink(props: TelegramLinkProps) { const { className: restClassName, ...restProps } = props; return ( ); }