2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* IconField wraps an input and an icon.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputtext/)
|
|
|
|
*
|
|
|
|
* @module iconfieldstyle
|
|
|
|
*
|
|
|
|
*/
|
2024-01-30 08:02:22 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum IconFieldClasses {
|
|
|
|
root = 'p-iconfield'
|
|
|
|
}
|
|
|
|
|
2024-01-30 08:02:22 +00:00
|
|
|
export interface IconFieldStyle extends BaseStyle {}
|