Skip to content

Commit

Permalink
fix: use paper's typography for drawer (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
gawrysiak authored and satya164 committed May 25, 2018
1 parent c8472ce commit 5a65241
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/DrawerItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
3 changes: 2 additions & 1 deletion src/components/DrawerSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 5a65241

Please sign in to comment.