import styled from 'styled-components/native' export const Container = styled.View` flex: 1; justify-content: space-between; flex-direction: column; padding-top: 20px; padding-horizontal: 30px; padding-bottom: 30px; ` export const Names = styled.View` flex-direction: row; ` export const Actions = styled.View` display: flex; flex-direction: row; align-items: center; justify-content: space-between; ` export const UserInfoContainer = styled.View` flex-direction: row; align-items: center; padding-bottom: 30px; margin-bottom: 30px; border-bottom-width: 8px; border-bottom-color: #F8F9FA; ` export const LanguageContainer = styled.View` flex-direction: row; justify-content: flex-start; align-items: center; margin-bottom: 10px; ` export const RemoveAccountContainer = styled.View` flex-direction: row; justify-content: flex-start; align-items: center; margin-bottom: 10px; margin-top: 15px; `