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.
24 lines (21 loc) • 443 B
TypeScript
/**
*
* Divider is used to separate contents.
*
* [Live Demo](https://primevue.org/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 {}