Button class style and dropdown icon customization

This commit is contained in:
Bahadır Sofuoğlu 2023-01-02 11:40:36 +03:00
parent c5c1e69a65
commit 3825bf7c60
4 changed files with 116 additions and 4 deletions

View file

@ -53,6 +53,26 @@ export interface SplitButtonProps {
* Uses to pass all properties of the HTMLButtonElement to the menu button.
*/
menuButtonProps?: ButtonHTMLAttributes | undefined;
/**
* Style class of the button.
*/
buttonClass?: string | undefined;
/**
* Name of the menu button icon.
*/
menuButtonIcon?: string | undefined;
/**
* Style class of the menu button.
*/
menuButtonClass?: string | undefined;
/**
* Style class of the menu.
*/
menuClass?: string | undefined;
/**
* Inline style of the menu.
*/
menuStyle?: any | undefined;
}
export interface SplitButtonSlots {