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.
32 lines (29 loc) • 659 B
TypeScript
/**
*
* Button is an extension to standard button element with icons and theming.
*
* [Live Demo](https://www.primevue.org/button/)
*
* @module buttonstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum ButtonClasses {
/**
* Class name of the root element
*/
root = 'p-button',
/**
* Class name of the loading icon element
*/
loadingIcon = 'p-button-loading-icon',
/**
* Class name of the icon element
*/
icon = 'p-button-icon',
/**
* Class name of the label element
*/
label = 'p-button-label'
}
export interface ButtonStyle extends BaseStyle {}