Ghost/ghost/members-auth-pages/components/FormHeaderCTA.js
Fabien O'Carroll 1bad6dee4e Fixed linting for auth-pages
no-issue
2019-05-07 17:15:50 +02:00

10 lines
221 B
JavaScript

export default ({title, label, icon, hash}) => (
<div className="gm-auth-cta">
{title ? (<h4>{ title }</h4>) : ''}
<a href={hash}>
{ label }
{ icon }
</a>
</div>
);