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

11 lines (9 loc) 407 B
import { Style, StyleOptions } from '../../usestyle'; export declare interface BaseStyle { name?: string | undefined; css?: string | undefined; classes?: object | undefined; inlineStyles?: object | undefined; loadStyle?: ((options?: StyleOptions) => Style | object | undefined) | undefined; getStyleSheet?: ((extendedCSS?: string, props?: any) => string | undefined) | undefined; }