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; type: string; } interface Props { } const Input = (props: InputProps) => { const { name, label, type } = props; const id = `input-${name}`; return ( <> ); }; export const NewsletterForm: React.StatelessComponent = (props: Props) => ( Submit Subscribe to our newsletter for updates in the 0x ecosystem ); 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; `;