interface LogoPropsType { fontColor?: string; width?: string; height?: string; } export function Logo(props: LogoPropsType) { const fontColor = props.fontColor || 'white'; const width = props.width || '151'; const height = props.height || '44'; return ( ); }