diff --git a/components/settings/customization/index.js b/components/settings/customization/index.js
index 27284b3..733a62d 100644
--- a/components/settings/customization/index.js
+++ b/components/settings/customization/index.js
@@ -1,10 +1,12 @@
import React, { useEffect, useState } from 'react'
-import { Alert, Pressable } from 'react-native'
+import { Alert, Pressable, StyleSheet, View } from 'react-native'
import { useTranslation } from 'react-i18next'
+import AppIcon from '../../common/app-icon'
import AppPage from '../../common/app-page'
import AppSwitch from '../../common/app-switch'
import AppText from '../../common/app-text'
+import { Colors, Spacing, Typography } from '../../../styles'
import TemperatureSlider from './temperature-slider'
import Segment from '../../common/segment'
import TrackingCategorySwitch from '../../common/tracking-category-switch'
@@ -308,7 +310,7 @@ const Settings = () => {
-
+
{cervixText}
{
/>
+
+
+
+ {labels.preOvu.title}
+
+ {labels.preOvu.note}
+
)
}
export default Settings
+
+const styles = StyleSheet.create({
+ icon: {
+ marginRight: Spacing.base,
+ },
+ line: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ },
+ title: {
+ ...Typography.subtitle,
+ },
+})