Added style class definitions to *Style.d.ts

This commit is contained in:
Mert Sincan 2024-05-08 12:40:44 +01:00
parent 290b8e1335
commit 64dca2bdb9
136 changed files with 7542 additions and 1119 deletions

View file

@ -1,3 +1,19 @@
/**
*
* Button is an extension to standard button element with icons and theming.
*
* [Live Demo](https://www.primevue.org/button/)
*
* @module buttonstyle
*
*/
import { BaseStyle } from '../../base/style';
export enum ButtonClasses {
root = 'p-button',
loadingIcon = 'p-button-loading-icon',
icon = 'p-button-icon',
label = 'p-button-label'
}
export interface ButtonStyle extends BaseStyle {}