diff --git a/src/components/Alert.js b/src/components/Alert.js
index 85d80be97..375e581f7 100644
--- a/src/components/Alert.js
+++ b/src/components/Alert.js
@@ -3,7 +3,7 @@ import { Icon } from '../';
import { Alert } from 'reactstrap';
const ICON_MAP = {
- warning: 'bullhorn',
+ warning: 'exclamation-circle',
success: 'check',
info: 'info-circle',
danger: 'ban'
diff --git a/test/components/Alert.spec.js b/test/components/Alert.spec.js
index 12d538a62..479069603 100644
--- a/test/components/Alert.spec.js
+++ b/test/components/Alert.spec.js
@@ -24,9 +24,9 @@ describe('', () => {
});
describe('with icon', () => {
- it('should show bullhorn for warning', () => {
+ it('should show exclamation-circle for warning', () => {
const icon = shallow().find(Icon);
- assert.equal(icon.prop('name'), 'bullhorn');
+ assert.equal(icon.prop('name'), 'exclamation-circle');
});
it('should show ban for danger', () => {