chore: Added hover styles (#1905)

This commit is contained in:
Sivin Varghese 2021-03-14 14:10:16 +05:30 committed by GitHub
parent 33b73451b7
commit efcf10c00f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 24 deletions

View file

@ -20,7 +20,7 @@ export const getInboxClassByType = (type, phoneNumber) => {
return 'ion-cloud';
case INBOX_TYPES.EMAIL:
return 'ion-email';
return 'ion-ios-email';
default:
return '';

View file

@ -29,7 +29,7 @@ describe('#Inbox Helpers', () => {
expect(getInboxClassByType('Channel::Api')).toEqual('ion-cloud');
});
it('should return correct class for Email', () => {
expect(getInboxClassByType('Channel::Email')).toEqual('ion-email');
expect(getInboxClassByType('Channel::Email')).toEqual('ion-ios-email');
});
});
});