We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19675d8 commit 5a9c71eCopy full SHA for 5a9c71e
src/components/scrollable/index.tsx
@@ -8,7 +8,7 @@ interface IScrollbar extends ScrollbarProps {
8
autoHideThumb?: boolean;
9
}
10
11
-const defaultSrollableClassName = 'scrollable';
+const defaultSrollableClassName = prefixClaName('scrollable');
12
13
/**
14
* The react-scrollbars-custom component default not supports auto hide thumb option,
@@ -23,7 +23,7 @@ export function Scrollable(props: IScrollbar) {
23
const isShow = isScrolling || isMouseOver;
24
25
const claNames = classNames(
26
- prefixClaName(defaultSrollableClassName),
+ defaultSrollableClassName,
27
className
28
);
29
0 commit comments