Files
komodo/docsite/src/components/MonitorLogo.tsx
beckerinj 32c38d796b docs
2023-04-12 18:19:13 -04:00

12 lines
236 B
TypeScript

import React from "react";
export default function MonitorLogo({ width = "4rem" }) {
return (
<img
style={{ width, height: "auto", opacity: 0.7 }}
src="img/monitor-lizard.png"
alt="monitor-lizard"
/>
);
}