2023-07-15 17:46:19 +03:00
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
|
|
|
interface LogoProps {
|
|
|
|
title: string
|
|
|
|
}
|
|
|
|
|
2023-07-25 20:27:29 +03:00
|
|
|
function Logo({ title }: LogoProps) {
|
2023-07-15 17:46:19 +03:00
|
|
|
return (
|
2023-07-20 17:11:03 +03:00
|
|
|
<Link to='/' className='flex items-center mr-4' tabIndex={-1}>
|
2023-08-26 19:39:49 +03:00
|
|
|
<img src='/favicon.svg' className='min-h-[2rem] mr-2 min-w-[2rem]' alt=''/>
|
2023-08-27 15:39:49 +03:00
|
|
|
<span className='self-center hidden text-xl font-semibold md:block whitespace-nowrap dark:text-white'>{title}</span>
|
2023-07-15 17:46:19 +03:00
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
}
|
2023-07-25 20:27:29 +03:00
|
|
|
export default Logo;
|