ente/web/packages/shared/components/EnteLogo.tsx
2024-03-01 12:21:07 +05:30

13 lines
258 B
TypeScript

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