15 lines
241 B
TypeScript
15 lines
241 B
TypeScript
|
|
/**
|
||
|
|
*
|
||
|
|
* [Live Demo](https://primevue.org/)
|
||
|
|
*
|
||
|
|
* @module baseiconstyle
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
import { BaseStyle } from '@primevue/core/base/style';
|
||
|
|
|
||
|
|
export enum BaseIconClasses {
|
||
|
|
root = 'p-icon'
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface BaseIconStyle extends BaseStyle {}
|