22 lines
512 B
TypeScript
22 lines
512 B
TypeScript
/**
|
|
*
|
|
* InputChips groups a collection of contents in tabs.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/inputchips/)
|
|
*
|
|
* @module inputchipsstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum InputChipsClasses {
|
|
root = 'p-inputchips',
|
|
input = 'p-inputchips-input',
|
|
chip = 'p-inputchips-chip',
|
|
pcChipLabel = 'p-inputchips-chip-label',
|
|
chipIcon = 'p-inputchips-chip-icon',
|
|
inputItem = 'p-inputchips-input-item'
|
|
}
|
|
|
|
export interface InputChipsStyle extends BaseStyle {}
|