UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

36 lines (33 loc) 760 B
/** * * ToggleSwitch is used to select a boolean value. * * [Live Demo](https://www.primevue.org/toggleswitch/) * * @module toggleswitchstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum ToggleSwitchClasses { /** * Class name of the root element */ root = 'p-toggleswitch', /** * Class name of the input element */ input = 'p-toggleswitch-input', /** * Class name of the slider element */ slider = 'p-toggleswitch-slider', /** * Class name of the handle element */ handle = 'p-toggleswitch-handle', /** * Class name of the icon element */ icon = 'p-toggleswitch-handle' } export interface ToggleSwitchStyle extends BaseStyle {}