EnteLogo.tsx 286 B

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