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
28 lines (25 loc) • 503 B
TypeScript
/**
*
* Tag component is used to categorize content.
*
* [Live Demo](https://www.primevue.org/tag)
*
* @module tagstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum TagClasses {
/**
* Class name of the root element
*/
root = 'p-tag',
/**
* Class name of the icon element
*/
icon = 'p-tag-icon',
/**
* Class name of the label element
*/
label = 'p-tag-label'
}
export interface TagStyle extends BaseStyle {}