@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
9 lines (8 loc) • 514 B
TypeScript
import { ScrollAreaScrollbarAxisPrivateProps, ScrollAreaScrollbarAxisProps } from '../ScrollArea.types';
export interface ScrollAreaScrollbarVisibleProps extends Omit<ScrollAreaScrollbarAxisProps, keyof ScrollAreaScrollbarAxisPrivateProps> {
orientation?: 'horizontal' | 'vertical';
}
export declare function ScrollAreaScrollbarVisible(props: ScrollAreaScrollbarVisibleProps): import("react/jsx-runtime").JSX.Element | null;
export declare namespace ScrollAreaScrollbarVisible {
var displayName: string;
}