diff --git a/components/header/symptom-view.js b/components/header/symptom-view.js
index df8b4bebc872343f4dc2778c860e808e52c1ff05..3f6a21f16e7bd78c5e14f2f0a009cfd664c6783b 100644
--- a/components/header/symptom-view.js
+++ b/components/header/symptom-view.js
@@ -24,6 +24,7 @@ export default function SymptomViewHeader(props) {
       </View >
       <FeatherIcon
         name='info'
+        style={styles.symptomInfoIcon}
         {...iconStyles.symptomHeaderIcons}
       />
     </View>
diff --git a/styles/index.js b/styles/index.js
index 78730f348862ec09fcf3de764fbd8461ed9491c7..59360e6ac425dac8d6bdc620fa0f424a9e600345 100644
--- a/styles/index.js
+++ b/styles/index.js
@@ -139,6 +139,10 @@ export default StyleSheet.create({
     color: 'black',
     marginBottom: 5
   },
+  symptomInfoIcon: {
+    marginRight: 20,
+    marginLeft: 20
+  },
   symptomBoxImage: {
     width: 50,
     height: 50
@@ -199,9 +203,6 @@ export default StyleSheet.create({
     flexDirection: 'row',
     justifyContent: 'space-between',
   },
-  headerSymptom: {
-    paddingRight: 20
-  },
   navigationArrow: {
     padding: 20
   },