Skip to content

Commit

Permalink
move components to screen/components directory
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbbb committed Dec 19, 2024
1 parent 1ffd763 commit 2d582fa
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import * as i18n from '@/languages';
import React, { useMemo } from 'react';
import LinearGradient from 'react-native-linear-gradient';
import { useTheme } from '../../theme/ThemeContext';
import { ButtonPressAnimation } from '../animations';
import { useTheme } from '@/theme/ThemeContext';
import { ButtonPressAnimation } from '@/components/animations';
import ConditionalWrap from 'conditional-wrap';
import { Box, Inline, Stack, Text, useForegroundColor, useColorMode, TextIcon } from '@/design-system';
import { AddressItem, AddressMenuAction, AddressMenuActionData } from '@/screens/change-wallet/ChangeWalletSheet';
import { TextSize } from '@/design-system/typography/typeHierarchy';
import { TextWeight } from '@/design-system/components/Text/Text';
import { opacity } from '@/__swaps__/utils/swaps';
import { usePinnedWalletsStore } from '@/state/wallets/pinnedWalletsStore';
import { AddressAvatar } from '@/screens/change-wallet/AddressAvatar';
import { SelectedAddressBadge } from '@/screens/change-wallet/SelectedAddressBadge';
import { AddressAvatar } from '@/screens/change-wallet/components/AddressAvatar';
import { SelectedAddressBadge } from '@/screens/change-wallet/components/SelectedAddressBadge';
import { DropdownMenu, MenuItem } from '@/components/DropdownMenu';
import { Icon } from '../icons';
import { Icon } from '@/components/icons';
import { removeFirstEmojiFromString } from '@/helpers/emojiHandler';
import { address as abbreviateAddress } from '@/utils/abbreviations';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Draggable, DraggableGrid, DraggableGridProps, UniqueIdentifier } from '@/components/drag-and-drop';
import { Box, HitSlop, Inline, Stack, Text } from '@/design-system';
import React, { useCallback, useMemo } from 'react';
import { AddressItem, AddressMenuAction, AddressMenuActionData, PANEL_INSET_HORIZONTAL } from './ChangeWalletSheet';
import { AddressItem, AddressMenuAction, AddressMenuActionData, PANEL_INSET_HORIZONTAL } from '../ChangeWalletSheet';
import { AddressAvatar } from './AddressAvatar';
import { ButtonPressAnimation } from '@/components/animations';
import { BlurView } from '@react-native-community/blur';
Expand All @@ -15,7 +15,7 @@ import { removeFirstEmojiFromString } from '@/helpers/emojiHandler';
import { PANEL_WIDTH } from '@/components/SmoothPager/ListPanel';
import { IS_IOS } from '@/env';
import { useTheme } from '@/theme';
import { DRAGGABLE_ACTIVATION_DELAY } from '@/components/change-wallet/WalletList';
import { DRAGGABLE_ACTIVATION_DELAY } from '@/screens/change-wallet/components/WalletList';
import { triggerHaptics } from 'react-native-turbo-haptics';
import { PixelRatio } from 'react-native';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
} from '@/screens/change-wallet/ChangeWalletSheet';
import { Box, Separator, Text } from '@/design-system';
import { DndProvider, Draggable, DraggableScrollViewProps, UniqueIdentifier } from '@/components/drag-and-drop';
import { PinnedWalletsGrid } from '@/screens/change-wallet/PinnedWalletsGrid';
import { PinnedWalletsGrid } from '@/screens/change-wallet/components/PinnedWalletsGrid';
import { usePinnedWalletsStore } from '@/state/wallets/pinnedWalletsStore';
import { MenuItem } from '@/components/DropdownMenu';
import { DraggableScrollView } from '@/components/drag-and-drop/components/DraggableScrollView';
Expand Down

0 comments on commit 2d582fa

Please sign in to comment.