fix DialogHeader missing imports

This commit is contained in:
ammarahm-ed
2020-09-30 13:53:52 +05:00
parent 6aaf1807a5
commit 71ef37feda

View File

@@ -1,6 +1,7 @@
import React from 'react';
import {Text, View} from 'react-native';
import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
import { SIZE, WEIGHT } from '../../common/common';
import {useTracked} from '../../provider';
const DialogHeader = ({icon, title, paragraph}) => {
@@ -20,7 +21,7 @@ const DialogHeader = ({icon, title, paragraph}) => {
) : null}
<Text
style={{
color: colors.accent,
color: colors.heading,
fontFamily: WEIGHT.bold,
marginLeft: 5,
fontSize: SIZE.md,