UNPKG

baked-recipe-admin

Version:

Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.

28 lines (25 loc) 697 B
/** * * 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 {}