Smaller header icons inside the room (#499)

This commit is contained in:
Diego Mello 2018-10-18 14:56:15 -03:00 committed by GitHub
parent 158df06d5c
commit abc61342b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -6,9 +6,9 @@ const prefix = isIOS ? 'ios' : 'md';
// icon name from provider: [ size of the uri, icon provider, name to be used later ] // icon name from provider: [ size of the uri, icon provider, name to be used later ]
const icons = { const icons = {
[`${ prefix }-star`]: [30, Ionicons, 'star'], [`${ prefix }-star`]: [25, Ionicons, 'star'],
[`${ prefix }-star-outline`]: [30, Ionicons, 'starOutline'], [`${ prefix }-star-outline`]: [25, Ionicons, 'starOutline'],
[`${ prefix }-more`]: [30, Ionicons, 'more'], [`${ prefix }-more`]: [25, Ionicons, 'more'],
[isIOS ? 'ios-create' : 'md-create']: [30, Ionicons, 'create'], [isIOS ? 'ios-create' : 'md-create']: [30, Ionicons, 'create'],
[`${ prefix }-close`]: [30, Ionicons, 'close'] [`${ prefix }-close`]: [30, Ionicons, 'close']
}; };