mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
17 lines
No EOL
385 B
JavaScript
17 lines
No EOL
385 B
JavaScript
const Logo = props => {
|
|
if (props.logoUrl) {
|
|
return (
|
|
<h1 className="logo-image ">
|
|
<a href="/">
|
|
<img src={props.logoUrl} alt={props.siteTitle} style={{maxWidth: "100px", maxHeight: "100px"}} />
|
|
</a>
|
|
</h1>
|
|
)
|
|
} else {
|
|
return (
|
|
<h1 className="logo-text"><a href="/">{props.siteTitle}</a></h1>
|
|
)
|
|
}
|
|
}
|
|
|
|
module.exports = Logo; |