Fixed #4303 - Sidebar: Icon classes not being correctly exposed

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-23 09:30:08 +03:00
parent b5c5f9fa1c
commit c54a39c83e
2 changed files with 8 additions and 2 deletions

View file

@ -161,8 +161,14 @@ export interface SidebarSlots {
header(): VNode[];
/**
* Custom close icon template.
* @param {Object} scope - close icon slot's params.
*/
closeicon(): VNode[];
closeicon(scope: {
/**
* Style class of the close icon
*/
class: any;
}): VNode[];
}
/**