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

32 lines (29 loc) 674 B
/** * * RadioButton is an extension to standard radio button element with theming. * * [Live Demo](https://www.primevue.org/radiobutton/) * * @module radiobuttonstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum RadioButtonClasses { /** * Class name of the root element */ root = 'p-radiobutton', /** * Class name of the box element */ box = 'p-radiobutton-box', /** * Class name of the input element */ input = 'p-radiobutton-input', /** * Class name of the icon element */ icon = 'p-radiobutton-icon' } export interface RadioButtonStyle extends BaseStyle {}