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

12 lines
263 B
JavaScript
Raw Normal View History

import { IconRightArrow } from './icons';
export default ({title, label, hash}) => (
<div className="flex items-baseline mt2">
<h4>{ title }</h4>
<a href={hash}>
{ label }
{ IconRightArrow }
</a>
</div>
);