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

6 lines
233 B
TypeScript

const Logo = ({ height, width }: { height: number; width: number }) => {
const webroot = process.env.WEBROOT || "";
return <img src={webroot + "/img/logo.png"} alt="logo" height={height} width={width} />;
};
export default Logo;