1
0
Fork 0
pingvin-share/frontend/src/components/Logo.tsx

6 lines
233 B
TypeScript
Raw Normal View History

2022-10-14 14:19:32 +02:00
const Logo = ({ height, width }: { height: number; width: number }) => {
2024-03-22 01:18:27 +01:00
const webroot = process.env.WEBROOT || "";
return <img src={webroot + "/img/logo.png"} alt="logo" height={height} width={width} />;
2022-10-14 14:19:32 +02:00
};
export default Logo;