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) • 634 B
TypeScript
/**
*
* Rating component is a star based selection input.
*
* [Live Demo](https://www.primevue.org/rating/)
*
* @module ratingstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum RatingClasses {
/**
* Class name of the root element
*/
root = 'p-rating',
/**
* Class name of the option element
*/
option = 'p-rating-option',
/**
* Class name of the on icon element
*/
onIcon = 'p-rating-on-icon',
/**
* Class name of the off icon element
*/
offIcon = 'p-rating-off-icon'
}
export interface RatingStyle extends BaseStyle {}