/**
 *
 * 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 {}