UNPKG

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) 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 {}