1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-11-16 04:10:35 +01:00
pingvin-share/frontend/src/components/Logo.tsx

5 lines
176 B
TypeScript
Raw Normal View History

2022-10-14 14:19:32 +02:00
const Logo = ({ height, width }: { height: number; width: number }) => {
return <img src="/img/logo.png" alt="logo" height={height} width={width} />;
2022-10-14 14:19:32 +02:00
};
export default Logo;