import { Typography } from 'antd';
import React from 'react';
import { version } from 'tailchat-shared';
import logoUrl from '@assets/images/logo.svg';
import { Icon } from 'tailchat-design';
const { Paragraph, Text, Link } = Typography;
const LogoLink: React.FC<{
src: string;
icon: React.ReactNode | string;
}> = React.memo((props) => {
const { src, icon } = props;
return (
{typeof icon === 'string' ?