fix(accordion): toggle icon now shows up in vue and react (#23426)

This commit is contained in:
Liam DeBeasi
2021-06-07 16:30:46 -04:00
committed by GitHub
parent 3be1c3dcd7
commit c716617945
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import {
arrowBackSharp,
caretBackSharp,
chevronBack,
chevronDown,
chevronForward,
close,
closeCircle,
@ -83,6 +84,7 @@ addIcons({
'arrow-back-sharp': arrowBackSharp,
'caret-back-sharp': caretBackSharp,
'chevron-back': chevronBack,
'chevron-down': chevronDown,
'chevron-forward': chevronForward,
close,
'close-circle': closeCircle,

View File

@ -1,5 +1,5 @@
import { addIcons } from 'ionicons';
import { arrowBackSharp, caretBackSharp, chevronBack, chevronForward, close, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
import { arrowBackSharp, caretBackSharp, chevronBack, chevronDown, chevronForward, close, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
export * from './proxies';
export { IonicVue } from './ionic-vue';
@ -81,6 +81,7 @@ addIcons({
'caret-back-sharp': caretBackSharp,
'chevron-back': chevronBack,
'chevron-forward': chevronForward,
'chevron-down': chevronDown,
'close': close,
'close-circle': closeCircle,
'close-sharp': closeSharp,