fix(fab): add close icon to internal icons for react (#20490)

fixes #20489
This commit is contained in:
Liam DeBeasi
2020-02-14 10:21:14 -05:00
committed by GitHub
parent 89bf08b627
commit c4fb31403e

View File

@ -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';
@ -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,