primevue-mirror/components/lib/radiobutton/style/RadioButtonStyle.d.ts

32 lines
660 B
TypeScript
Raw Normal View History

/**
*
* RadioButton is an extension to standard radio button element with theming.
*
* [Live Demo](https://www.primevue.org/radiobutton/)
*
* @module radiobuttonstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum RadioButtonClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-radiobutton',
2024-05-22 13:52:02 +00:00
/**
* Class name of the box element
*/
box = 'p-radiobutton-box',
2024-05-22 13:52:02 +00:00
/**
* Class name of the input element
*/
input = 'p-radiobutton-input',
2024-05-22 13:52:02 +00:00
/**
* Class name of the icon element
*/
icon = 'p-radiobutton-icon'
}
2023-10-02 13:15:41 +00:00
export interface RadioButtonStyle extends BaseStyle {}