UNPKG

baked-recipe-admin

Version:

Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.

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 {}