This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-12 15:02:23 -08:00

18 lines
380 B
JavaScript

// @flow
import React from 'react';
export default (props: { href: string, children: React.Element<*> }) => {
const style = {
display: 'inline-block',
padding: '10px 20px',
color: '#FFFFFF',
background: '#000000',
borderRadius: '4px',
fontWeight: 500,
textDecoration: 'none',
cursor: 'pointer',
};
return <a {...props} style={style} />;
};