primeng
Version:
PrimeNG is an open source UI library for Angular 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 PrimeB
19 lines (18 loc) • 378 B
TypeScript
import { TemplateRef } from '@angular/core';
/**
* Defines valid templates in ScrollTop.
* @group Templates
*/
export interface ScrollTopTemplates {
/**
* Icon of the component.
*/
icon(context: {
/**
* Style class of the icon.
*/
styleClass: 'p-scrolltop-icon';
}): TemplateRef<{
styleClass: string;
}>;
}