primevue-mirror/components/lib/scrollpanel/style/ScrollPanelStyle.d.ts

21 lines
533 B
TypeScript
Raw Normal View History

/**
*
* ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.
*
* [Live Demo](https://www.primevue.org/scrollpanel/)
*
* @module scrollpanelstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum ScrollPanelClasses {
root = 'p-scrollpanel',
contentContainer = 'p-scrollpanel-content-container',
content = 'p-scrollpanel-content',
barX = 'p-scrollpanel-bar-x',
barY = 'p-scrollpanel-bar-y'
}
2023-10-02 13:15:41 +00:00
export interface ScrollPanelStyle extends BaseStyle {}