Skip to content

Commit

Permalink
fix(accordion): toggle icon now shows up in vue and react (#23426)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Jun 7, 2021
1 parent 3be1c3d commit c716617
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/react/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
arrowBackSharp,
caretBackSharp,
chevronBack,
chevronDown,
chevronForward,
close,
closeCircle,
Expand Down Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion packages/vue/src/index.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit c716617

Please sign in to comment.