EnteLogo.tsx 258 B

123456789101112
  1. import { styled } from "@mui/material";
  2. const LogoImage = styled("img")`
  3. margin: 3px 0;
  4. pointer-events: none;
  5. `;
  6. export function EnteLogo(props) {
  7. return (
  8. <LogoImage height={18} alt="logo" src="/images/ente.svg" {...props} />
  9. );
  10. }