/* @flow */ import styled from 'styled-components'; import React from 'react'; import { FormattedMessage } from 'react-intl'; import Content from 'views/Wallet/components/Content'; import { Switch, Select, Link, Button, Tooltip, Icon, icons as ICONS, colors, } from 'trezor-ui-components'; import { FIAT_CURRENCIES } from 'config/app'; import { FONT_SIZE } from 'config/variables'; import l10nCommonMessages from 'views/common.messages'; import Coins from './components/Coins'; import l10nMessages from './index.messages'; import type { Props } from './Container'; const StyledContent = styled(Content)` max-width: 800px; `; const CurrencySelect = styled(Select)` min-width: 77px; `; const Label = styled.div` display: flex; color: ${colors.TEXT_SECONDARY}; align-items: center; `; const LabelTop = styled.div` color: ${colors.TEXT_SECONDARY}; padding-bottom: 10px; `; const Section = styled.div` margin-bottom: 20px; `; const Row = styled.div` display: flex; align-items: center; justify-content: space-between; `; const Actions = styled.div` display: flex; margin-top: 40px; `; const Buttons = styled.div` display: flex; justify-content: flex-end; `; const Info = styled.div` flex: 1; color: ${colors.TEXT_SECONDARY}; font-size: ${FONT_SIZE.SMALL}; align-self: center; `; const TooltipIcon = styled(Icon)` margin-left: 6px; cursor: pointer; `; const buildCurrencyOption = currency => { return { value: currency, label: currency.toUpperCase(), }; }; const WalletSettings = (props: Props) => (
props.setLocalCurrency(option.value)} value={buildCurrencyOption(props.wallet.localCurrency)} options={FIAT_CURRENCIES.map(c => buildCurrencyOption(c))} />
{ props.setHideBalance(checked); }} checked={props.wallet.hideBalance} />
); export default WalletSettings;