2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum ScrollTopClasses {
|
|
|
|
root = 'p-scrolltop',
|
|
|
|
icon = 'p-scrolltop-icon'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface ScrollTopStyle extends BaseStyle {}
|