diff --git a/src/components/notifications/App/components/NoBackup/index.js b/src/components/notifications/App/components/NoBackup/index.js index f2122c0e..cff81753 100644 --- a/src/components/notifications/App/components/NoBackup/index.js +++ b/src/components/notifications/App/components/NoBackup/index.js @@ -1,6 +1,6 @@ /* @flow */ import * as React from 'react'; -import Notification from 'components/Notification'; +import { Notification } from 'trezor-ui-components'; import type { Props } from '../../index'; diff --git a/src/components/notifications/App/components/OnlineStatus/index.js b/src/components/notifications/App/components/OnlineStatus/index.js index adb3b010..529c40a1 100644 --- a/src/components/notifications/App/components/OnlineStatus/index.js +++ b/src/components/notifications/App/components/OnlineStatus/index.js @@ -1,6 +1,6 @@ /* @flow */ import * as React from 'react'; -import Notification from 'components/Notification'; +import { Notification } from 'trezor-ui-components'; import type { Props } from '../../index'; import l10nMessages from './index.messages'; diff --git a/src/components/notifications/App/components/UpdateBridge/index.js b/src/components/notifications/App/components/UpdateBridge/index.js index 80a3c3fe..d5bb1131 100644 --- a/src/components/notifications/App/components/UpdateBridge/index.js +++ b/src/components/notifications/App/components/UpdateBridge/index.js @@ -1,6 +1,6 @@ /* @flow */ import * as React from 'react'; -import Notification from 'components/Notification'; +import { Notification } from 'trezor-ui-components'; import l10nCommonMessages from 'views/common.messages'; import type { Props } from '../../index'; diff --git a/src/components/notifications/App/components/UpdateFirmware/index.js b/src/components/notifications/App/components/UpdateFirmware/index.js index b7e2bfbd..8e2d6930 100644 --- a/src/components/notifications/App/components/UpdateFirmware/index.js +++ b/src/components/notifications/App/components/UpdateFirmware/index.js @@ -1,6 +1,6 @@ /* @flow */ import * as React from 'react'; -import Notification from 'components/Notification'; +import { Notification } from 'trezor-ui-components'; import l10nCommonMessages from 'views/common.messages'; import { withRouter } from 'react-router-dom'; import { matchPath } from 'react-router'; diff --git a/src/components/notifications/Context/components/Account/index.js b/src/components/notifications/Context/components/Account/index.js index 8b018e43..3d3b2bbb 100644 --- a/src/components/notifications/Context/components/Account/index.js +++ b/src/components/notifications/Context/components/Account/index.js @@ -1,6 +1,6 @@ /* @flow */ import * as React from 'react'; -import Notification from 'components/Notification'; +import { Notification } from 'trezor-ui-components'; import l10nMessages from './index.messages'; import type { Props } from '../../index'; diff --git a/src/components/notifications/Context/components/Static/index.js b/src/components/notifications/Context/components/Static/index.js index ee4fab30..55c71577 100644 --- a/src/components/notifications/Context/components/Static/index.js +++ b/src/components/notifications/Context/components/Static/index.js @@ -1,9 +1,8 @@ /* @flow */ import * as React from 'react'; -import Notification from 'components/Notification'; +import { Notification, Link } from 'trezor-ui-components'; import Bignumber from 'bignumber.js'; -import { Link } from 'trezor-ui-components'; import { FormattedMessage } from 'react-intl'; import l10nCommonMessages from 'views/common.messages'; import l10nMessages from './index.messages'; diff --git a/src/views/Landing/components/InitializationError/index.js b/src/views/Landing/components/InitializationError/index.js index 93f79b35..bb19573f 100644 --- a/src/views/Landing/components/InitializationError/index.js +++ b/src/views/Landing/components/InitializationError/index.js @@ -2,7 +2,7 @@ import React from 'react'; import styled from 'styled-components'; -import Notification from 'components/Notification'; +import { Notification } from 'trezor-ui-components'; const Wrapper = styled.div` width: 100%; diff --git a/src/views/Wallet/views/UnreadableDevice/index.js b/src/views/Wallet/views/UnreadableDevice/index.js index 5bf2e08b..6f9bfdbf 100644 --- a/src/views/Wallet/views/UnreadableDevice/index.js +++ b/src/views/Wallet/views/UnreadableDevice/index.js @@ -2,7 +2,7 @@ import React from 'react'; import styled from 'styled-components'; -import Notification from 'components/Notification'; +import { Notification } from 'trezor-ui-components'; import { injectIntl } from 'react-intl'; import l10nMessages from './index.messages';