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.
Files
outline/server/pages/components/Button.js

17 lines
327 B
JavaScript

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