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
32 lines (29 loc) • 643 B
TypeScript
/**
*
* Checkbox is an extension to standard checkbox element with theming.
*
* [Live Demo](https://www.primevue.org/checkbox/)
*
* @module checkboxstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum CheckboxClasses {
/**
* Class name of the root element
*/
root = 'p-checkbox',
/**
* Class name of the box element
*/
box = 'p-checkbox-box',
/**
* Class name of the input element
*/
input = 'p-checkbox-input',
/**
* Class name of the icon element
*/
icon = 'p-checkbox-icon'
}
export interface CheckboxStyle extends BaseStyle {}