@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
22 lines • 653 B
TypeScript
export declare enum ScrollAreaViewportCssVars {
/**
* The distance from the horizontal start edge in pixels.
* @type {number}
*/
scrollAreaOverflowXStart = "--scroll-area-overflow-x-start",
/**
* The distance from the horizontal end edge in pixels.
* @type {number}
*/
scrollAreaOverflowXEnd = "--scroll-area-overflow-x-end",
/**
* The distance from the vertical start edge in pixels.
* @type {number}
*/
scrollAreaOverflowYStart = "--scroll-area-overflow-y-start",
/**
* The distance from the vertical end edge in pixels.
* @type {number}
*/
scrollAreaOverflowYEnd = "--scroll-area-overflow-y-end",
}