import React from "react"; interface EnteLogoProps { /** * The height of the logo image, in pixels. * * Default: 18px */ height?: number; } /** * The Ente logo ("ente" in Montserrat), as an inline SVG. * * Having it as an inline SVG has two advantages: * * - It does not rely on a corresponding asset in the public folder * - It can be styled using CSS. * * The default height of the SVG element is 18px. The size can be customized by * providing a {@link height} prop: the SVG will preserve its aspect ratio when * fitting inside the provided viewport. */ export const EnteLogo: React.FC = ({ height }) => ( );