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) • 585 B
TypeScript
/**
*
* ToggleButton is used to select a boolean value using a button.
*
* [Live Demo](https://www.primevue.org/togglebutton/)
*
* @module togglebuttonstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum ToggleButtonClasses {
/**
* Class name of the root element
*/
root = 'p-togglebutton',
/**
* Class name of the icon element
*/
icon = 'p-togglebutton-icon',
/**
* Class name of the label element
*/
label = 'p-togglebutton-label'
}
export interface ToggleButtonStyle extends BaseStyle {}