Vulcan/packages/nova-base-components/lib/common/Logo.jsx

19 lines
406 B
React
Raw Normal View History

import React from 'react';
const Logo = ({logoUrl, siteTitle}) => {
if (logoUrl) {
2016-02-16 15:08:30 +09:00
return (
<h1 className="logo-image ">
<a href="/">
<img src={logoUrl} alt={siteTitle} style={{maxWidth: "100px", maxHeight: "100px"}} />
2016-02-16 15:08:30 +09:00
</a>
</h1>
)
} else {
return (
<h1 className="logo-text"><a href="/">{siteTitle}</a></h1>
2016-02-16 15:08:30 +09:00
)
}
}
module.exports = Logo;