import React from 'react' type Props = { src: string alt?: string } export function Logo(props: Props) { const alt = props.alt || 'Logo' return {alt} }