UNPKG

primevue

Version:

PrimeVue is a premium UI library for Vue featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock, wh

24 lines (21 loc) 443 B
/** * * Divider is used to separate contents. * * [Live Demo](https://primevue.dev/divider) * * @module dividerstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum DividerClasses { /** * Class name of the root element */ root = 'p-divider', /** * Class name of the content element */ content = 'p-divider-content' } export interface DividerStyle extends BaseStyle {}