import React from 'react'; export const Logo = ({ src, loading = 'lazy', title, alt, href = '#' }) => { return src ? (
{alt
) : null; };