10 lines
343 B
TypeScript
10 lines
343 B
TypeScript
import React, { FC } from 'react';
|
|
import { Image } from '@chakra-ui/react';
|
|
import { LogoSvg } from '../../../assets/icons';
|
|
|
|
export const SiteLogo: FC = () => {
|
|
return <Image src={LogoSvg} alt='Логотип компании "Сухой мастер"' w={40} />;
|
|
};
|
|
|
|
// todo: add i18n for alt
|
|
// todo: replace Image by SVG React component
|