Skip to content

Commit 508ac15

Browse files
committed
fix: removed scrollBar docs
1 parent 6874734 commit 508ac15

File tree

1 file changed

+2
-46
lines changed

1 file changed

+2
-46
lines changed

apps/portal/src/content/docs/components/scroll-area.mdx

+2-46
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ return (
4545

4646
## Anatomy
4747

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.
4949

5050
```typescript jsx
5151
<ScrollArea className="h-64 w-64">
@@ -69,7 +69,7 @@ The `ScrollArea` component serves as the main container for the scrollable area.
6969
<ScrollArea
7070
type="hover" // [Optional] Scrollbar visibility behavior ('auto' | 'always' | 'scroll' | 'hover')
7171
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)
7373
className="h-[300px] w-[400px]" // [Optional] Container dimensions and styles
7474
viewportClassName="p-4" // [Optional] Viewport styles
7575
scrollThumbClassName="bg-gray-400" // [Optional] Scroll thumb styles
@@ -136,47 +136,3 @@ The `ScrollArea` component serves as the main container for the scrollable area.
136136
},
137137
]}
138138
/>
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

Comments
 (0)