type Props = { className?: string; height?: string; showWordmark?: boolean; }; function LogoSentry({showWordmark = true, height = '32px', className}: Props) { const wordmarkSvg = ( ); const glyphSvg = ( ); return ( {showWordmark ? wordmarkSvg : glyphSvg} ); } export default LogoSentry;