mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-15 20:00:33 +01:00
5 lines
176 B
TypeScript
5 lines
176 B
TypeScript
const Logo = ({ height, width }: { height: number; width: number }) => {
|
|
return <img src="/img/logo.png" alt="logo" height={height} width={width} />;
|
|
};
|
|
export default Logo;
|