2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Checkbox is an extension to standard checkbox element with theming.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/checkbox/)
|
|
|
|
*
|
|
|
|
* @module checkboxstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum CheckboxClasses {
|
|
|
|
root = 'p-checkbox',
|
|
|
|
box = 'p-checkbox-box',
|
|
|
|
input = 'p-checkbox-input',
|
|
|
|
icon = 'p-checkbox-icon'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface CheckboxStyle extends BaseStyle {}
|