2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* InputGroup displays text, icon, buttons and other content can be grouped next to an input.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputgroup/)
|
|
|
|
*
|
|
|
|
* @module inputgroupstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-11-02 12:48:32 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum InputGroupClasses {
|
|
|
|
root = 'p-inputgroup'
|
|
|
|
}
|
|
|
|
|
2023-11-02 12:48:32 +00:00
|
|
|
export interface InputGroupStyle extends BaseStyle {}
|