diff --git a/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx b/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx
index dcc4b61f..f569b550 100644
--- a/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx
+++ b/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx
@@ -5,10 +5,9 @@ import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
import NimbusLogo from '../../components/Logos/NimbusLogo'
import TagContainer from '../../components/General/TagContainer'
import Titles from '../../components/General/Titles'
-import NodeIcon from '../../components/Icons/NodeIcon'
import LabelInputField from '../../components/General/LabelInputField'
-import ReactionIcon from '../../components/Icons/ReactionIcon'
import ColorPicker from '../../components/General/ColorPicker'
+import { NodeIcon, ReactionIcon } from '@status-im/icons'
const CreateLocalNodePage = () => {
const [autoConnectChecked, setAutoConnectChecked] = useState(false)
@@ -36,7 +35,7 @@ const CreateLocalNodePage = () => {
- } backgroundColor={'white'} />
+
@@ -66,7 +65,7 @@ const CreateLocalNodePage = () => {
- }>Continue
+ }>Continue
diff --git a/src/pages/PairDevice/CreateAvatar.tsx b/src/pages/PairDevice/CreateAvatar.tsx
index c55f7b1e..d23c9127 100644
--- a/src/pages/PairDevice/CreateAvatar.tsx
+++ b/src/pages/PairDevice/CreateAvatar.tsx
@@ -2,10 +2,9 @@ import { XStack, YStack } from 'tamagui'
import LabelInputField from '../../components/General/LabelInputField'
import { Avatar, Text } from '@status-im/components'
import ColorPicker from '../../components/General/ColorPicker'
+import { ReactionIcon } from '@status-im/icons'
-import ReactionIcon from '../../components/Icons/ReactionIcon'
-// create func component
-export const CreateAvatar = () => {
+const CreateAvatar = () => {
return (
@@ -18,7 +17,7 @@ export const CreateAvatar = () => {
- } backgroundColor={'white'} />
+
@@ -31,3 +30,5 @@ export const CreateAvatar = () => {
)
}
+
+export default CreateAvatar