mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
18 lines
427 B
TypeScript
18 lines
427 B
TypeScript
/**
|
|
*
|
|
* SplitButton groups a set of commands in an overlay with a default command.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/splitbutton/)
|
|
*
|
|
* @module splitbuttonstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum SplitButtonClasses {
|
|
root = 'p-splitbutton',
|
|
pcButton = 'p-splitbutton-button',
|
|
pcDropdown = 'p-splitbutton-dropdown'
|
|
}
|
|
|
|
export interface SplitButtonStyle extends BaseStyle {}
|