File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ export class ActionSheet implements OverlayInterface {
242
242
< button class = { buttonClass ( b ) } onClick = { ( ) => this . buttonClick ( b ) } >
243
243
< span class = "action-sheet-button-inner" >
244
244
{ b . icon
245
- ? < ion-icon name = { b . icon } class = "action-sheet-icon" />
245
+ ? < ion-icon icon = { b . icon } class = "action-sheet-icon" />
246
246
: null }
247
247
{ b . text }
248
248
</ span >
@@ -258,7 +258,7 @@ export class ActionSheet implements OverlayInterface {
258
258
< span class = "action-sheet-button-inner" >
259
259
{ cancelButton . icon
260
260
? < ion-icon
261
- name = { cancelButton . icon }
261
+ icon = { cancelButton . icon }
262
262
class = "action-sheet-icon"
263
263
/>
264
264
: null }
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export class BackButton {
82
82
class = { backButtonClasses }
83
83
onClick = { ( ev ) => this . onClick ( ev ) } >
84
84
< span class = "back-button-inner" >
85
- { backButtonIcon && < ion-icon name = { backButtonIcon } /> }
85
+ { backButtonIcon && < ion-icon icon = { backButtonIcon } /> }
86
86
{ this . mode === 'ios' && backButtonText && < span class = "button-text" > { backButtonText } </ span > }
87
87
{ this . mode === 'md' && < ion-ripple-effect tapClick = { true } /> }
88
88
</ span >
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export class MenuButton {
31
31
< ion-menu-toggle menu = { this . menu } autoHide = { this . autoHide } >
32
32
< ion-button >
33
33
< slot >
34
- < ion-icon slot = "icon-only" name = { menuIcon } />
34
+ < ion-icon icon = { menuIcon } slot = "icon-only" />
35
35
</ slot >
36
36
</ ion-button >
37
37
</ ion-menu-toggle >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export class RefresherContent {
43
43
< div class = "refresher-pulling" >
44
44
{ this . pullingIcon &&
45
45
< div class = "refresher-pulling-icon" >
46
- < ion-icon name = { this . pullingIcon } > </ ion-icon >
46
+ < ion-icon icon = { this . pullingIcon } > </ ion-icon >
47
47
</ div >
48
48
}
49
49
{ this . pullingText &&
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export class TabButton {
85
85
class = "tab-cover"
86
86
onKeyUp = { this . onKeyUp . bind ( this ) }
87
87
onBlur = { this . onBlur . bind ( this ) } >
88
- { tab . icon && < ion-icon class = "tab-button-icon" name = { tab . icon } > </ ion-icon > }
88
+ { tab . icon && < ion-icon class = "tab-button-icon" icon = { tab . icon } > </ ion-icon > }
89
89
{ tab . label && < span class = "tab-button-text" > { tab . label } </ span > }
90
90
{ tab . badge && < ion-badge class = "tab-badge" color = { tab . badgeColor } > { tab . badge } </ ion-badge > }
91
91
{ this . mode === 'md' && < ion-ripple-effect tapClick = { true } /> }
You can’t perform that action at this time.
0 commit comments