diff --git a/src/components/WalletViewContainer/index.js b/src/components/WalletViewContainer/index.js new file mode 100644 index 00000000..a9f47e61 --- /dev/null +++ b/src/components/WalletViewContainer/index.js @@ -0,0 +1,54 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import styled from 'styled-components'; +import colors from 'config/colors'; +import { FONT_SIZE, FONT_WEIGHT, FONT_FAMILY } from 'config/variables'; + +const Wrapper = styled.div` + padding: +`; + +const Textarea = ({ + className, + placeholder = '', + value, + customStyle = {}, + onFocus, + onBlur, + isDisabled, + onChange, + isError, + topLabel, +}) => ( + + {topLabel && ( + {topLabel} + )} + + +); + +Textarea.propTypes = { + className: PropTypes.string, + isError: PropTypes.bool, + onFocus: PropTypes.func, + onBlur: PropTypes.func, + onChange: PropTypes.func, + customStyle: PropTypes.string, + placeholder: PropTypes.string, + value: PropTypes.string, + isDisabled: PropTypes.bool, + topLabel: PropTypes.node, +}; + +export default Textarea; diff --git a/src/views/Wallet/components/LeftNavigation/components/Divider/index.js b/src/views/Wallet/components/LeftNavigation/components/Divider/index.js index 185a6594..1d05a5ae 100644 --- a/src/views/Wallet/components/LeftNavigation/components/Divider/index.js +++ b/src/views/Wallet/components/LeftNavigation/components/Divider/index.js @@ -13,7 +13,8 @@ const Wrapper = styled.div` color: ${colors.TEXT_SECONDARY}; background: ${colors.LANDING}; ${props => props.hasBorder && css` - border: 1px solid ${colors.BODY}; + border-top: 1px solid ${colors.BODY}; + border-bottom: 1px solid ${colors.BODY}; `} `;