@@ -45,7 +45,7 @@ return (
45
45
46
46
## Anatomy
47
47
48
- The ScrollArea component can be used to create scrollable areas with custom scrollbars .
48
+ The ScrollArea component can be used to create scrollable areas.
49
49
50
50
``` typescript jsx
51
51
< ScrollArea className = " h-64 w-64" >
@@ -69,7 +69,7 @@ The `ScrollArea` component serves as the main container for the scrollable area.
69
69
< ScrollArea
70
70
type = " hover" // [Optional] Scrollbar visibility behavior ('auto' | 'always' | 'scroll' | 'hover')
71
71
dir = " ltr" // [Optional] Reading direction ('ltr' | 'rtl')
72
- scrollHideDelay = {600 } // [Optional] Delay before hiding scrollbar (in ms)
72
+ scrollHideDelay = {600 } // [Optional] Delay before hiding scrollbar (in ms)
73
73
className = " h-[300px] w-[400px]" // [Optional] Container dimensions and styles
74
74
viewportClassName = " p-4" // [Optional] Viewport styles
75
75
scrollThumbClassName = " bg-gray-400" // [Optional] Scroll thumb styles
@@ -136,47 +136,3 @@ The `ScrollArea` component serves as the main container for the scrollable area.
136
136
},
137
137
]}
138
138
/>
139
-
140
- ### ScrollBar
141
-
142
- The ` ScrollBar ` component is used to display a custom scrollbar inside the scroll area.
143
-
144
- ``` typescript jsx
145
- < ScrollBar
146
- orientation = " vertical" // [Optional] Scrollbar orientation ('horizontal' | 'vertical')
147
- className = " bg-gray-100" // [Optional] Scrollbar styles
148
- scrollThumbClassName = " bg-gray-400" // [Optional] Scroll thumb styles
149
- forceMount // [Optional] Force mounting when more control is needed
150
- / >
151
- ```
152
-
153
- <DocsPage.PropsTable
154
- props = { [
155
- {
156
- name: " orientation" ,
157
- description:
158
- " The orientation of the scrollbar. Controls whether it appears on the side or bottom." ,
159
- required: false ,
160
- value: " 'horizontal' | 'vertical'" ,
161
- defaultValue: " 'vertical'" ,
162
- },
163
- {
164
- name: " className" ,
165
- description: " Additional class names for the scrollbar" ,
166
- required: false ,
167
- value: " string" ,
168
- },
169
- {
170
- name: " scrollThumbClassName" ,
171
- description: " Class names for the scroll thumb element" ,
172
- required: false ,
173
- value: " string" ,
174
- },
175
- {
176
- name: " forceMount" ,
177
- description: " Used to force mounting when more control is needed" ,
178
- required: false ,
179
- value: " boolean" ,
180
- },
181
- ]}
182
- />
0 commit comments