fix: use paper's typography for drawer (#387)

This commit is contained in:
Grzegorz Gawrysiak
2018-05-26 01:58:39 +02:00
committed by Satyajit Sahoo
parent c8472ce6fc
commit 5a65241691
2 changed files with 4 additions and 2 deletions

View File

@@ -2,11 +2,12 @@
import color from 'color';
import * as React from 'react';
import { View, Text, StyleSheet } from 'react-native';
import { View, StyleSheet } from 'react-native';
import Icon from './Icon';
import TouchableRipple from './TouchableRipple';
import { grey300, grey700 } from '../styles/colors';
import withTheme from '../core/withTheme';
import Text from './Typography/Text';
import type { Theme } from '../types';
import type { IconSource } from './Icon';

View File

@@ -2,9 +2,10 @@
import color from 'color';
import * as React from 'react';
import { View, Text } from 'react-native';
import { View } from 'react-native';
import Divider from './Divider';
import withTheme from '../core/withTheme';
import Text from './Typography/Text';
import type { Theme } from '../types';
type Props = {