import React from 'react'; interface EchoDashLogoProps { className?: string; width?: number | string; height?: number | string; } export const EchoDashLogo: React.FC = ({ className = '', width = 189, height = 36, }) => { return ( ); };