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
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');
});
});
});