2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Chip represents people using icons, labels and images.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/chip)
|
|
|
|
*
|
|
|
|
* @module chipstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum ChipClasses {
|
|
|
|
root = 'p-chip',
|
|
|
|
image = 'p-chip-image',
|
|
|
|
icon = 'p-chip-icon',
|
|
|
|
label = 'p-chip-label',
|
|
|
|
removeIcon = 'p-chip-remove-icon'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface ChipStyle extends BaseStyle {}
|