feat: SVG icons

This commit is contained in:
Bettenbuk Zoltan
2019-08-30 18:39:06 +02:00
committed by Zoltan Bettenbuk
parent 738a199b4c
commit 8a3ddd8596
188 changed files with 2332 additions and 848 deletions

View File

@@ -8,7 +8,7 @@ import {
View
} from 'react-native';
import { Icon } from '../../../font-icons';
import { Icon, IconClose } from '../../../icons';
import { StyleType } from '../../../styles';
import AbstractDialog, {
@@ -68,7 +68,7 @@ class BaseDialog<P: Props, S: State> extends AbstractDialog<P, S> {
onPress = { this._onCancel }
style = { styles.closeWrapper }>
<Icon
name = 'close'
src = { IconClose }
style = { _dialogStyles.closeStyle } />
</TouchableOpacity>
{ this._renderContent() }