Ghost/ghost/members-auth-pages/components/FormHeaderCTA.js

10 lines
221 B
JavaScript
Raw Normal View History

export default ({title, label, icon, hash}) => (
<div className="gm-auth-cta">
2019-05-07 11:29:07 +03:00
{title ? (<h4>{ title }</h4>) : ''}
<a href={hash}>
{ label }
{ icon }
</a>
</div>
);