mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
19 lines
412 B
TypeScript
19 lines
412 B
TypeScript
/**
|
|
*
|
|
* SelectButton is used to choose single or multiple items from a list using buttons.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/selectbutton/)
|
|
*
|
|
* @module selectbuttonstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum SelectButtonClasses {
|
|
/**
|
|
* Class name of the root element
|
|
*/
|
|
root = 'p-selectbutton'
|
|
}
|
|
|
|
export interface SelectButtonStyle extends BaseStyle {}
|