19 lines
397 B
TypeScript
19 lines
397 B
TypeScript
/**
|
|
*
|
|
* ToggleSwitch is used to select a boolean value.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/toggleswitch/)
|
|
*
|
|
* @module toggleswitchstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum ToggleSwitchClasses {
|
|
root = 'p-toggleswitch',
|
|
input = 'p-toggleswitch-input',
|
|
slider = 'p-toggleswitch-slider'
|
|
}
|
|
|
|
export interface ToggleSwitchStyle extends BaseStyle {}
|