mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
17 lines
402 B
TypeScript
17 lines
402 B
TypeScript
/**
|
|
*
|
|
* ScrollTop gets displayed after a certain scroll position and used to navigates to the top of the page quickly.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/scrolltop/)
|
|
*
|
|
* @module scrolltopstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum ScrollTopClasses {
|
|
root = 'p-scrolltop',
|
|
icon = 'p-scrolltop-icon'
|
|
}
|
|
|
|
export interface ScrollTopStyle extends BaseStyle {}
|