blob: 4ff9663bad47f797a1475e24c65bff56485b52e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
import * as React from 'react';
import styled from 'styled-components';
import { colors } from 'ts/style/colors';
import {Button} from 'ts/@next/components/button';
interface InputProps {
name: string;
label: string;
}
interface Props {
}
const Input = (props: InputProps) => {
const { name, label } = props;
const id = `input-${name}`;
return (
<>
<label className="visuallyHidden" htmlFor={id}>{label}</label>
<StyledInput id={id} placeholder={label} {...props} />
</>
);
};
export const NewsletterForm: React.StatelessComponent = (props: Props) => (
<StyledForm>
<InputWrapper>
<Input name="email" type="email" label="Email Address" />
<SubmitButton hasIcon={true}>
Submit
</SubmitButton>
</InputWrapper>
<Text>Subscribe to our newsletter for updates in the 0x ecosystem</Text>
</StyledForm>
);
const StyledForm = styled.form`
appearance: none;
border: 0;
color: ${colors.white};
padding: 13px 0 14px;
margin-top: 27px;
`;
const StyledInput = styled.input`
appearance: none;
background-color: transparent;
border: 0;
border-bottom: 1px solid #393939;
color: ${colors.textDarkSecondary};
font-size: 1.294117647rem;
padding: 0 0 16px;
width: 100%;
margin-bottom: 13px;
`;
const InputWrapper = styled.div`
position: relative;
`;
const SubmitButton = styled(Button)`
display: flex;
justify-content: center;
align-items: center;
position: absolute;
right: 0;
top: calc(50% - 29px);
`;
const Text = styled.span`
color: #656565;
font-size: 0.833333333rem;
font-weight: 300;
line-height: 1.2em;
`;
|