diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-13 18:32:03 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-13 18:32:03 +0000 |
| commit | fffaff60e683d805b46d77331e8b07a13b230390 (patch) | |
| tree | 07193a98b113797a1fe4f13f648ab02429dae135 /app/components/Account.js | |
| parent | ca87e2c8f701b40e1e5346de0c9f37499d37a65c (diff) | |
| download | mullvadvpn-fffaff60e683d805b46d77331e8b07a13b230390.tar.xz mullvadvpn-fffaff60e683d805b46d77331e8b07a13b230390.zip | |
- Update button styles
- Add satellite icon to login and buy buttons
Diffstat (limited to 'app/components/Account.js')
| -rw-r--r-- | app/components/Account.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/components/Account.js b/app/components/Account.js index 12f3c1b6a8..477b10e2d3 100644 --- a/app/components/Account.js +++ b/app/components/Account.js @@ -3,6 +3,7 @@ import React, { Component, PropTypes } from 'react'; import { If, Then, Else } from 'react-if'; import { Layout, Container, Header } from './Layout'; import { formatAccount } from '../lib/formatters'; +import ExternalLinkSVG from '../assets/images/icon-extLink.svg'; export default class Account extends Component { @@ -66,7 +67,10 @@ export default class Account extends Component { </div> <div className="account__footer"> - <button className="button button--positive" onClick={ this.onExternalLink.bind(this, 'purchase') }>Buy more time</button> + <button className="button button--positive" onClick={ this.onExternalLink.bind(this, 'purchase') }> + <span className="button-label">Buy more time</span> + <ExternalLinkSVG className="button-icon button-icon--16" /> + </button> <button className="button button--negative" onClick={ ::this.onLogout }>Logout</button> </div> |
