primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
28 lines (25 loc) • 697 B
TypeScript
/**
*
* InlineMessage component is useful in cases where a single message needs to be displayed related to an element such as forms. It has one property, severity of the message.
*
* [Live Demo](https://www.primevue.org/inlinemessage/)
*
* @module inlinemessagestyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum InlineMessageClasses {
/**
* Class name of the root element
*/
root = 'p-inlinemessage',
/**
* Class name of the icon element
*/
icon = 'p-inlinemessage-icon',
/**
* Class name of the text element
*/
text = 'p-inlinemessage-text'
}
export interface InlineMessageStyle extends BaseStyle {}