Skip to content

Commit

Permalink
fix(fab): add close icon to internal icons for react (#20490)
Browse files Browse the repository at this point in the history
fixes #20489
  • Loading branch information
liamdebeasi committed Feb 14, 2020
1 parent 89bf08b commit c4fb314
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react/src/components/index.ts
@@ -1,7 +1,7 @@

import { defineCustomElements } from '@ionic/core/loader';
import { addIcons } from 'ionicons';
import { arrowBackSharp, caretBackSharp, chevronBack, chevronForward, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
import { arrowBackSharp, caretBackSharp, chevronBack, chevronForward, close, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
export { createAnimation, createGesture, AlertButton, AlertInput, Gesture, GestureConfig, GestureDetail, setupConfig } from '@ionic/core';
export * from './proxies';

Expand Down Expand Up @@ -37,6 +37,7 @@ addIcons({
'caret-back-sharp': caretBackSharp,
'chevron-back': chevronBack,
'chevron-forward': chevronForward,
'close': close,
'close-circle': closeCircle,
'close-sharp': closeSharp,
'menu-outline': menuOutline,
Expand Down

0 comments on commit c4fb314

Please sign in to comment.