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) 575 B
/** * * Splitter is utilized to separate and resize panels. * * [Live Demo](https://www.primevue.org/splitter/) * * @module splitterstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum SplitterClasses { /** * Class name of the root element */ root = 'p-splitter', /** * Class name of the gutter element */ gutter = 'p-splitter-gutter', /** * Class name of the gutter handle element */ gutterHandle = 'p-splitter-gutter-handle' } export interface SplitterStyle extends BaseStyle {}