Fix bug in icon case sensitivity

This commit is contained in:
Ben Gotow 2019-10-10 20:43:01 -05:00
parent c283513653
commit bf7e43e37d
4 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
import React from 'react';
import { Store, ContactsPerspective } from './Store';
import { localized, Actions, AccountStore } from 'mailspring-exports';
import * as Icons from './Icons';
import * as Icons from './SVGIcons';
import { ListensToFluxStore, BindGlobalCommands } from 'mailspring-component-kit';
interface AddContactToolbarProps {

View file

@ -4,7 +4,7 @@ import { ContactBase } from './ContactInfoMapping';
import { YYMMDDInput } from './YYMMDDInput';
import { ListEditor } from './ListEditor';
import { TypeaheadFreeInput } from './TypeaheadFreeInput';
import * as Icons from './Icons';
import * as Icons from './SVGIcons';
import { ContactProfilePhoto } from 'mailspring-component-kit';
const BaseTypes = ['Home', 'Work', 'Other'];

View file

@ -1,7 +1,7 @@
import React from 'react';
import { Account, Contact, AccountStore, ContactGroup } from 'mailspring-exports';
import { ContactProfilePhoto, RetinaImg } from 'mailspring-component-kit';
import * as Icons from './Icons';
import * as Icons from './SVGIcons';
import { Store } from './Store';
import { ContactBase, ContactInteractorMetadata } from './ContactInfoMapping';