| 5 | import { Globe } from 'lucide-react' |
| 6 | |
| 7 | interface FaviconImageProps { |
| 8 | src?: string |
| 9 | alt?: string |
| 10 | size?: number |
| 11 | className?: string |
| 12 | } |
| 13 | |
| 14 | export function FaviconImage({ src, alt = '', size = 16, className = '' }: FaviconImageProps) { |
| 15 | const [error, setError] = useState(false) |
nothing calls this directly
no outgoing calls
no test coverage detected