digivue
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
19 lines (16 loc) • 313 B
TypeScript
/**
*
* InputLabel renders a form input label.
*
*
* @module inputlabelstyle
*
*/
import type { BaseStyle } from '@digivue/core/base/style';
export enum InputLabelClasses {
/**
* The class of root element
*/
root = 'd-inputlabel'
}
export interface InputLabelStyle extends BaseStyle {}