primevue-mirror/components/lib/checkbox/style/CheckboxStyle.d.ts

20 lines
413 B
TypeScript
Raw Normal View History

/**
*
* 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';
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 {}