mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
1bad6dee4e
no-issue
10 lines
221 B
JavaScript
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>
|
|
);
|