baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
28 lines (25 loc) • 609 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 type { BaseStyle } from '@primevue/core/base/style';
export enum SplitButtonClasses {
/**
* Class name of the root element
*/
root = 'p-splitbutton',
/**
* Class name of the button element
*/
pcButton = 'p-splitbutton-button',
/**
* Class name of the dropdown element
*/
pcDropdown = 'p-splitbutton-dropdown'
}
export interface SplitButtonStyle extends BaseStyle {}