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