import { Box, Flex, Text } from '@radix-ui/themes' interface Props { src: string title?: string height?: number showTitle?: boolean } export const Logo: React.FC = ({ src, title, height = 30, showTitle = true }) => { return ( {title} {showTitle && ( {title} )} ) }