WIP: Pricing page

This commit is contained in:
Tom Moor
2019-01-06 13:09:22 -08:00
parent 58e31a9d3d
commit 56bda12192
5 changed files with 205 additions and 25 deletions

View File

@@ -0,0 +1,15 @@
// @flow
import styled from 'styled-components';
const Button = styled.a`
display: inline-flex;
align-items: center;
padding: 10px 20px;
color: ${props => props.theme.white};
background: ${props => props.theme.black};
border-radius: 4px;
font-weight: 600;
height: 56px;
`;
export default Button;