visit
This article assumes that you have gone through the steps of the previous tutorial, installed the Superflows library and have the default navigation bar up and running. This tutorial takes it forward from there.
return (
<div>
<SfNav brand="Your Brand"/>
</div>
);
return (
<div>
<SfNav brandLogo="//superflows.dev/img/superflows_gray_transparent_200.png"/>
</div>
);
Needless to say, you can also show both, as follows:
return (
<div>
<SfNav brand="Your Brand" brandLogo="//superflows.dev/img/superflows_gray_transparent_200.png"/>
</div>
);
return (
<div>
<SfNav
brand="Your Brand"
brandLogo="//superflows.dev/img/superflows_gray_transparent_200.png"
stylesBrand={{
color: 'black',
textShadow: '1px 2px 2px gray'
}}
stylesBrandLogo={{
backgroundColor: 'white',
borderRadius: '10px',
paddingRight: '0px',
marginRight: '10px',
border: 'solid 1px black'
}}/>
</div>
);