forked from github-starred/komodo
12 lines
236 B
TypeScript
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"
|
|
/>
|
|
);
|
|
}
|