mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
17 lines
385 B
React
17 lines
385 B
React
![]() |
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;
|