import React, { useState } from 'react'; const Logo = ({ className = "w-12 h-12", ...props }) => { const [hasError, setHasError] = useState(false); return (
{!hasError ? ( BNXCHAIN Logo setHasError(true)} /> ) : ( // Futuristic Geometric Fallback if image fails
)}
); }; export default Logo;