| 102 | |
| 103 | // Scrollbar (track + thumb) |
| 104 | interface BarProps { |
| 105 | orientation: 'vertical' | 'horizontal'; |
| 106 | metrics: ScrollMetrics; |
| 107 | containerRef: React.RefObject<HTMLDivElement>; |
| 108 | fadeScrollbars: boolean; |
| 109 | isScrolling: boolean; |
| 110 | } |
| 111 | |
| 112 | const Scrollbar: FC<BarProps> = ({ |
| 113 | orientation, |
nothing calls this directly
no outgoing calls
no test coverage detected