UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

6 lines (5 loc) 462 B
import { ScrollAreaScrollbarAxisPrivateProps, ScrollAreaScrollbarAxisProps } from '../ScrollArea.types'; export interface ScrollAreaScrollbarVisibleProps extends Omit<ScrollAreaScrollbarAxisProps, keyof ScrollAreaScrollbarAxisPrivateProps> { orientation?: 'horizontal' | 'vertical'; } export declare const ScrollAreaScrollbarVisible: import("react").ForwardRefExoticComponent<ScrollAreaScrollbarVisibleProps & import("react").RefAttributes<HTMLDivElement>>;