You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
import { FC } from 'react'; |
|
import styles from './Logo.module.scss'; |
|
|
|
export type LogoProps = { |
|
src: string; |
|
}; |
|
|
|
export const Logo: FC<LogoProps> = ({ src }) => ( |
|
<div className={styles.root}> |
|
<div className={styles.container}> |
|
<img src={src} alt="Logo" className={styles.image} loading="lazy" /> |
|
</div> |
|
</div> |
|
); |
|
export default Logo;
|
|
|