import React from 'react'; import styled from 'styled-components'; import { H2 } from 'components/common/Heading'; import colors from 'config/colors'; const Wrapper = styled.div` display: flex; flex: 1; flex-direction: row; background: ${colors.WHITE}; padding: 50px; `; const StyledH2 = styled(H2)` padding-bottom: 10px; `; const Column = styled.div` display: flex; flex: 1; flex-direction: column; `; const Sign = styled(Column)``; const Verify = styled(Column)` padding-left: 20px; `; const Label = styled.div` color: ${colors.LABEL}; padding: 5px 0px; `; const Textarea = styled.textarea` resize: vertical; width: 100%; `; const Input = styled.input``; const SignVerify = () => ( Sign message