This commit is contained in:
Manav Rathi
2024-05-25 06:18:21 +05:30
parent 56aceb589d
commit 34effef810
5 changed files with 15 additions and 8 deletions

View File

@@ -10,9 +10,11 @@ interface EnteLogoProps {
height?: number;
}
export const EnteLogo: React.FC<EnteLogoProps> = ({ height }) => (
<LogoImage height={height ?? 18} alt="logo" src="/images/ente.svg" />
);
export const EnteLogo: React.FC<EnteLogoProps> = ({ height }) => {
return (
<LogoImage height={height ?? 18} alt="logo" src="/images/ente.svg" />
);
};
const LogoImage = styled("img")`
margin: 3px 0;