ente/web/packages/shared/components/EnteLogo.tsx

13 lines
258 B
TypeScript
Raw Normal View History

import { styled } from "@mui/material";
2022-06-24 09:17:30 +00:00
const LogoImage = styled("img")`
2022-06-24 09:17:30 +00:00
margin: 3px 0;
pointer-events: none;
2022-06-10 13:25:10 +00:00
`;
2022-07-07 07:59:31 +00:00
export function EnteLogo(props) {
2022-06-24 09:17:30 +00:00
return (
2022-07-07 08:05:16 +00:00
<LogoImage height={18} alt="logo" src="/images/ente.svg" {...props} />
2022-06-24 09:17:30 +00:00
);
2022-06-10 13:25:10 +00:00
}