import React from 'react'; import styled from 'styled-components'; import type { LogoProps } from '@redocly/theme/components/Logo/Logo'; import { Logo } from '@redocly/theme/components/Logo/Logo'; export function NavbarLogo(props: LogoProps) { return ; } const NavbarLogoComponent = styled(Logo)` --logo-height: var(--navbar-logo-height); --logo-width: var(--navbar-logo-width); --logo-margin: var(--navbar-logo-margin); --logo-max-width: var(--navbar-logo-max-width); --logo-max-height: var(--navbar-logo-max-height); `;