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) 547 B
/** * * Tooltip directive provides advisory information for a component. * * [Live Demo](https://primevue.org/tooltip) * * @module tooltipstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum TooltipClasses { /** * Class name of the root element */ root = 'p-tooltip', /** * Class name of the arrow element */ arrow = 'p-tooltip-arrow', /** * Class name of the text element */ text = 'p-tooltip-text' } export interface TooltipStyle extends BaseStyle {}