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.
14 lines
334 B
14 lines
334 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> |
|
);
|
|
|