2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Button is an extension to standard button element with icons and theming.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/button/)
|
|
|
|
*
|
|
|
|
* @module buttonstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum ButtonClasses {
|
|
|
|
root = 'p-button',
|
|
|
|
loadingIcon = 'p-button-loading-icon',
|
|
|
|
icon = 'p-button-icon',
|
|
|
|
label = 'p-button-label'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface ButtonStyle extends BaseStyle {}
|