mirror of
https://github.com/ente-io/ente.git
synced 2025-08-14 02:07:33 +00:00
tsc
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user