SplitButton icon sot updates

This commit is contained in:
Tuğçe Küçükoğlu 2023-06-06 11:14:14 +03:00
parent 1f961e0a6e
commit ebe3ac809c
2 changed files with 14 additions and 4 deletions

View file

@ -181,11 +181,21 @@ export interface SplitButtonSlots {
/**
* Custom menu button icon template.
*/
icon(): VNode[];
icon(scope: {
/**
* Style class of the icon.
*/
class: string;
}): VNode[];
/**
* Custom menu button icon template.
*/
menubuttonicon(): VNode[];
menubuttonicon(scope: {
/**
* Style class of the icon.
*/
class: string;
}): VNode[];
}
/**