diff --git a/native/account/logged-out-modal.react.js b/native/account/logged-out-modal.react.js --- a/native/account/logged-out-modal.react.js +++ b/native/account/logged-out-modal.react.js @@ -29,7 +29,6 @@ import RegisterPanel from './register-panel.react.js'; import type { RegisterState } from './register-panel.react.js'; import SIWEPanel from './siwe-panel.react.js'; -import EthereumLogo from '../components/ethereum-logo.react.js'; import KeyboardAvoidingView from '../components/keyboard-avoiding-view.react.js'; import ConnectedStatusBar from '../connected-status-bar.react.js'; import { @@ -63,6 +62,7 @@ type StateChange, setStateForContainer, } from '../utils/state-container.js'; +import EthereumLogo from '../vectors/ethereum-logo.react.js'; let initialAppLoad = true; const safeAreaEdges = ['top', 'bottom']; diff --git a/native/chat/background-chat-thread-list.react.js b/native/chat/background-chat-thread-list.react.js --- a/native/chat/background-chat-thread-list.react.js +++ b/native/chat/background-chat-thread-list.react.js @@ -11,10 +11,10 @@ import ChatThreadList from './chat-thread-list.react.js'; import type { ChatTopTabsNavigationProp } from './chat.react.js'; -import BackgroundTabIllustration from '../components/background-tab-illustration.react.js'; import type { NavigationRoute } from '../navigation/route-names.js'; import { useSelector } from '../redux/redux-utils.js'; import { useStyles } from '../themes/colors.js'; +import BackgroundTabIllustration from '../vectors/background-tab-illustration.react.js'; type BackgroundChatThreadListProps = { navigation: ChatTopTabsNavigationProp<'BackgroundChatThreadList'>, diff --git a/native/chat/chat-thread-list-sidebar.react.js b/native/chat/chat-thread-list-sidebar.react.js --- a/native/chat/chat-thread-list-sidebar.react.js +++ b/native/chat/chat-thread-list-sidebar.react.js @@ -7,11 +7,11 @@ import { SidebarItem, sidebarHeight } from './sidebar-item.react.js'; import SwipeableThread from './swipeable-thread.react.js'; -import ExtendedArrow from '../components/arrow-extended.react.js'; -import Arrow from '../components/arrow.react.js'; import Button from '../components/button.react.js'; import UnreadDot from '../components/unread-dot.react.js'; import { useColors, useStyles } from '../themes/colors.js'; +import ExtendedArrow from '../vectors/arrow-extended.react.js'; +import Arrow from '../vectors/arrow.react.js'; type Props = { +sidebarInfo: SidebarInfo, diff --git a/native/chat/sidebar-list-modal.react.js b/native/chat/sidebar-list-modal.react.js --- a/native/chat/sidebar-list-modal.react.js +++ b/native/chat/sidebar-list-modal.react.js @@ -8,12 +8,12 @@ import { SidebarItem } from './sidebar-item.react.js'; import ThreadListModal from './thread-list-modal.react.js'; -import ExtendedArrow from '../components/arrow-extended.react.js'; -import Arrow from '../components/arrow.react.js'; import Button from '../components/button.react.js'; import type { RootNavigationProp } from '../navigation/root-navigator.react.js'; import type { NavigationRoute } from '../navigation/route-names.js'; import { useColors, useStyles } from '../themes/colors.js'; +import ExtendedArrow from '../vectors/arrow-extended.react.js'; +import Arrow from '../vectors/arrow.react.js'; export type SidebarListModalParams = { +threadInfo: ThreadInfo, diff --git a/native/components/arrow-extended.react.js b/native/vectors/arrow-extended.react.js rename from native/components/arrow-extended.react.js rename to native/vectors/arrow-extended.react.js diff --git a/native/components/arrow.react.js b/native/vectors/arrow.react.js rename from native/components/arrow.react.js rename to native/vectors/arrow.react.js diff --git a/native/components/background-tab-illustration.react.js b/native/vectors/background-tab-illustration.react.js rename from native/components/background-tab-illustration.react.js rename to native/vectors/background-tab-illustration.react.js diff --git a/native/components/ethereum-logo.react.js b/native/vectors/ethereum-logo.react.js rename from native/components/ethereum-logo.react.js rename to native/vectors/ethereum-logo.react.js