diff --git a/src/components/General/TagContainer.css b/src/components/General/TagContainer.css
new file mode 100644
index 00000000..d02ec351
--- /dev/null
+++ b/src/components/General/TagContainer.css
@@ -0,0 +1,4 @@
+
+.tag-container div:nth-child(1) {
+ background:transparent;
+ }
\ No newline at end of file
diff --git a/src/components/General/TagContainer.tsx b/src/components/General/TagContainer.tsx
new file mode 100644
index 00000000..4f6d117c
--- /dev/null
+++ b/src/components/General/TagContainer.tsx
@@ -0,0 +1,15 @@
+import { Tag } from '@status-im/components'
+import { XStack } from 'tamagui'
+import PairIcon from '../Icons/PairIcon'
+import CreateIcon from '../Icons/CreateIcon'
+
+const TagContainer = () => {
+ return (
+
+
+
+
+ )
+}
+
+export default TagContainer
diff --git a/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx b/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx
index 38d4054d..d0809acc 100644
--- a/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx
+++ b/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx
@@ -3,10 +3,9 @@ import { Button as StatusButton, Tag, Text, Avatar, Checkbox } from '@status-im/
import { Label, Separator, XStack, YStack } from 'tamagui'
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 PairIcon from '../../components/Icons/PairIcon'
-import CreateIcon from '../../components/Icons/CreateIcon'
import LabelInputField from '../../components/General/LabelInputField'
import ReactionIcon from '../../components/Icons/ReactionIcon'
import ColorPicker from '../../components/General/ColorPicker'
@@ -19,10 +18,7 @@ const CreateLocalNodePage = () => {