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/SignupButton.js
2017-10-29 15:02:24 -07:00

20 lines
433 B
JavaScript

// @flow
import React from 'react';
import styled from 'styled-components';
import { color } from '../../../shared/styles/constants';
const SlackSignin = () => {
return <Button href="/auth/slack">Sign In with Slack</Button>;
};
const Button = styled.a`
display: inline-block;
padding: 10px 20px;
color: ${color.white};
background: ${color.black};
border-radius: 4px;
font-weight: 500;
`;
export default SlackSignin;