Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves committed Apr 11, 2024
1 parent 950a62a commit 3fbc202
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/icons/NoDappsImage.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Svg, { ClipPath, Defs, G, Path, SvgProps } from 'react-native-svg'

import { sharedColors } from 'src/shared/constants'
import { sharedColors } from 'shared/constants'

export const NoDappsImage = ({
width = 268,
Expand Down
3 changes: 1 addition & 2 deletions src/components/icons/TransactionsIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { sharedColors } from 'shared/constants'

import { FooterIconInterface } from '.'

const TransactionsIcon = ({
export const TransactionsIcon = ({
active = false,
activeColor = sharedColors.primary,
...props
Expand All @@ -17,4 +17,3 @@ const TransactionsIcon = ({
/>
</Svg>
)
export default TransactionsIcon
3 changes: 1 addition & 2 deletions src/components/icons/UsersIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { sharedColors } from 'shared/constants'

import { FooterIconInterface } from '.'

const UsersIcon = ({
export const UsersIcon = ({
active = false,
activeColor = sharedColors.primary,
...props
Expand All @@ -17,4 +17,3 @@ const UsersIcon = ({
/>
</Svg>
)
export default UsersIcon
4 changes: 2 additions & 2 deletions src/ux/appFooter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { castStyle } from 'shared/utils'
import { HomeIcon } from 'components/icons/HomeIcon'
import { NetworkIcon } from 'components/icons/NetworkIcon'
import { ScanIcon } from 'components/icons/ScanIcon'
import TransactionsIcon from 'components/icons/TransactionsIcon'
import UsersIcon from 'components/icons/UsersIcon'
import { TransactionsIcon } from 'components/icons/TransactionsIcon'
import { UsersIcon } from 'components/icons/UsersIcon'

const buttonWidth = 52

Expand Down

0 comments on commit 3fbc202

Please sign in to comment.