survey-webapp/SurveyFrontend/src/components/Logo/Logo.tsx
2025-04-05 19:31:48 +05:00

16 lines
No EOL
321 B
TypeScript

import React from "react";
import styles from './Logo.module.css'
interface LogoProps {
href: string;
}
const Logo: React.FC<LogoProps> = ({href}) => {
return (
<a className={styles.logo} href={href}>
<img src='../../../public/logo.svg' alt="" />
</a>
);
};
export default Logo;