ente/packages/shared/components/EnteLogo.tsx
2023-11-09 09:40:43 +05:30

14 lines
285 B
TypeScript

import React from 'react';
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} />
);
}