mediacms/frontend/src/static/js/components/page-layout/PageHeader/Logo.jsx

16 wiersze
351 B
JavaScript

import React from 'react';
export const Logo = ({ src, loading = 'lazy', title, alt, href = '#' }) => {
return src ? (
<div className="logo">
<a href={href} title={title}>
<h1>
<span>
<img src={src} alt={alt || title} title={title} loading={loading} />
</span>
</h1>
</a>
</div>
) : null;
};