mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
19 lines
410 B
TypeScript
19 lines
410 B
TypeScript
/**
|
|
*
|
|
* InputGroup displays text, icon, buttons and other content can be grouped next to an input.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/inputgroup/)
|
|
*
|
|
* @module inputgroupstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum InputGroupClasses {
|
|
/**
|
|
* Class name of the root element
|
|
*/
|
|
root = 'p-inputgroup'
|
|
}
|
|
|
|
export interface InputGroupStyle extends BaseStyle {}
|